Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
12345678910111213 |
- package hdl
-
- import (
- "applet/app/svc"
- "github.com/gin-gonic/gin"
- )
-
- func Coupon(c *gin.Context) {
- svc.Coupon(c)
- }
- func CouponReceive(c *gin.Context) {
- svc.CouponReceive(c)
- }
|