Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- package hdl
-
- import (
- "applet/app/svc"
- "github.com/gin-gonic/gin"
- )
-
- func Goods(c *gin.Context) {
- svc.Goods(c)
- }
- func GoodsSku(c *gin.Context) {
- svc.GoodsSku(c)
- }
- func GoodsCoupon(c *gin.Context) {
- svc.GoodsCoupon(c)
- }
|