diff --git a/core/server.go b/core/server.go index 40c87df..61be1d1 100644 --- a/core/server.go +++ b/core/server.go @@ -17,5 +17,6 @@ func RunServer() { Server.GET("/", func(c *gin.Context) { c.String(200, Tail) }) + gin.SetMode(gin.ReleaseMode) Server.Run(":" + sillyGirl.Get("port", "8080")) }