選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- package hdl
-
- import (
- "applet/app/store/svc"
- "github.com/gin-gonic/gin"
- )
-
- func Index(c *gin.Context) {
- svc.Index(c)
- }
- func StoreIndex(c *gin.Context) {
- svc.StoreIndex(c)
- }
- func UserInfo(c *gin.Context) {
- svc.UserInfo(c)
- }
|