add routes, config, args pkg

This commit is contained in:
Jay
2020-08-03 20:19:47 +08:00
commit f92efa91fc
6 changed files with 261 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
package routes
import (
"net/http"
"github.com/gin-gonic/gin"
)
func New() *gin.Engine {
e := gin.New()
e.Use(gin.Logger())
e.Use(gin.Recovery())
return e
}
func SetRoute(e *gin.Engine) {
e.GET("/", func(c *gin.Context) {
c.String(http.StatusOK, "ok")
})
}