add private api

This commit is contained in:
Jay
2019-09-16 09:16:58 +00:00
parent 368e29b3de
commit b29a99f400
8 changed files with 214 additions and 1 deletions
+30
View File
@@ -0,0 +1,30 @@
package routes
import (
"dorisbot/pkg/context"
"net/http"
"dorisbot/route/private"
"github.com/gin-gonic/gin"
)
// NewEngine -
func NewEngine() *gin.Engine {
e := gin.New()
e.Use(gin.Recovery())
e.Use(gin.Logger())
return e
}
// SetRoutes -
func SetRoutes(e *gin.Engine) {
e.GET("/", func(c *gin.Context) {
c.String(http.StatusOK, "ok")
})
privGroup := e.Group("/private")
{
privGroup.GET("/pages", context.PatchCtx(private.VerifyKey), context.PatchCtx(private.GetFacebookIDs))
}
}