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 hdl
-
- import (
- "applet/app/svc"
- "github.com/gin-gonic/gin"
- )
-
- // PlayletBase
- // @Summary 短视频-基本信息
- // @Tags 短视频
- // @Description 短视频-基本信息
- // @Accept json
- // @Produce json
- // @param Authorization header string true "验证参数Bearer和token空格拼接"
- // @Success 200 {object} md.PlayletBaseData "具体数据"
- // @Failure 400 {object} md.Response "具体错误"
- // @Router /api/v1/playlet/base [get]
- func PlayletBase(c *gin.Context) {
- svc.PlayletBase(c)
- }
-
- // PlayletReward
- // @Summary 实名认证-保存
- // @Tags 实名认证
- // @Description 实名认证-保存
- // @Accept json
- // @Produce json
- // @param Authorization header string true "验证参数Bearer和token空格拼接"
- // @Param req body md.PlayletRewardRequest true "参数"
- // @Success 200 {string} "具体数据"
- // @Failure 400 {object} md.Response "具体错误"
- // @Router /api/v1/playlet/reward [post]
- func PlayletReward(c *gin.Context) {
- svc.PlayletReward(c)
- }
|