mirror of
https://github.com/skyle1995/NetworkAuth.git
synced 2026-05-25 02:24:05 +08:00
16 lines
312 B
Go
16 lines
312 B
Go
package server
|
|
|
|
import (
|
|
"NetworkAuth/controllers/install"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// RegisterInstallRoutes 注册安装相关的路由
|
|
func RegisterInstallRoutes(rg *gin.RouterGroup) {
|
|
installGroup := rg.Group("/install")
|
|
|
|
// 提交安装表单
|
|
installGroup.POST("", install.InstallSubmitHandler)
|
|
}
|