You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
402 B

/**
* @Title:
* @Description:
* @Author: Yuki Wong(iyuki0430@msn.com)
* @Update:
* @Date: 2020/7/20 11:49
* @File: AccountController.go
* @Software: GoLand
**/
package AccountController
import (
"dsSupport/MyModel/Account/AccountOpenAPI"
"github.com/gin-gonic/gin"
)
func Routers(r *gin.RouterGroup) {
rr := r.Group("/openapi")
rr.POST("/account/login", AccountOpenAPI.Login)
return
}