diff --git a/main.go b/main.go index 7728bcd..a224553 100644 --- a/main.go +++ b/main.go @@ -1,19 +1,19 @@ package main import ( - "git.loafle.net/commons_go/logging" + "fmt" + "log" "os" "os/signal" "syscall" - "log" - "fmt" + + "git.loafle.net/commons_go/logging" "git.loafle.net/overflow/overflow_gateway_probe/server" - oogws "git.loafle.net/overflow/overflow_gateway_websocket/server" "git.loafle.net/overflow/overflow_gateway_probe/servlet" + oogws "git.loafle.net/overflow/overflow_gateway_websocket/server" ) - -func main() { +func main() { defer logging.Logger().Sync() @@ -41,4 +41,3 @@ func main() { s.Stop() } -