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.
|
// 账号相关的接口 |
|
package routers |
|
|
|
import ( |
|
handler "server/modules/customer/handler/account" |
|
|
|
"github.com/gin-gonic/gin" |
|
) |
|
|
|
func account(e *gin.Engine) { |
|
e.POST("/account/login", handler.Login) |
|
e.POST("/account/online", handler.Online) |
|
e.POST("/account/onlineStatus", handler.OnlineStatus) |
|
}
|
|
|