@@ -0,0 +1,26 @@
|
||||
package basic
|
||||
|
||||
import (
|
||||
"honoka-chan/internal/router"
|
||||
"honoka-chan/internal/schema/ghome"
|
||||
"honoka-chan/internal/session"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func loginArea(ctx *gin.Context) {
|
||||
ss := session.New(ctx)
|
||||
defer ss.Finalize()
|
||||
|
||||
ss.Respond(ghome.LoginAreaResp{
|
||||
Code: 0,
|
||||
Msg: "ok",
|
||||
Data: ghome.LoginAreaData{
|
||||
UserID: ctx.PostForm("userid"),
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
func init() {
|
||||
router.AddHandler("v1", "POST", "/basic/loginarea", loginArea)
|
||||
}
|
||||
Reference in New Issue
Block a user