gin-login-register/routers/common.go
2023-03-01 23:53:06 +08:00

11 lines
182 B
Go

package routers
import (
"frank/gin-login-register/controllers"
"github.com/gin-gonic/gin"
)
func InitCommonRouter(r *gin.RouterGroup) {
r.GET("/hello", controllers.SayHello)
}