wings/api/routes.go

18 lines
312 B
Go
Raw Normal View History

package api
import (
"github.com/gin-gonic/gin"
)
func (api *API) registerRoutes() {
api.router.GET("/", AuthHandler(""), handleGetIndex)
api.router.PATCH("/config", AuthHandler("c:config"), handlePatchConfig)
api.registerServerRoutes()
api.registerServerFileRoutes()
}
func handle(c *gin.Context) {
}