This commit is contained in:
crusader 2018-03-16 12:17:14 +09:00
parent f6ee2e9b39
commit d747c231f8

13
main.go
View File

@ -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()
}