This commit is contained in:
laodaming 2023-08-03 17:37:21 +08:00
parent ae9bad0baa
commit 07dae70930

View File

@ -4,7 +4,6 @@ import (
"flag" "flag"
"fmt" "fmt"
"net/http" "net/http"
"time"
"fusenapi/utils/auth" "fusenapi/utils/auth"
@ -29,7 +28,6 @@ func main() {
ctx := svc.NewServiceContext(c) ctx := svc.NewServiceContext(c)
handler.RegisterHandlers(server, ctx) handler.RegisterHandlers(server, ctx)
fmt.Printf("Starting server at %s:%d...\n", c.Host, c.Port) fmt.Printf("Starting server at %s:%d...\n", c.Host, c.Port)
server.Start() server.Start()
} }