소스 검색

update swag

adv_callback
shenjiachi 1 개월 전
부모
커밋
95b24854c0
3개의 변경된 파일213개의 추가작업 그리고 0개의 파일을 삭제
  1. +80
    -0
      docs/docs.go
  2. +80
    -0
      docs/swagger.json
  3. +53
    -0
      docs/swagger.yaml

+ 80
- 0
docs/docs.go 파일 보기

@@ -501,6 +501,82 @@ const docTemplate = `{
}
}
},
"/api/v1/circleFriends/comment": {
"get": {
"description": "是否可以评论",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"朋友圈"
],
"summary": "朋友圈-评论",
"parameters": [
{
"type": "string",
"description": "验证参数Bearer和token空格拼接",
"name": "Authorization",
"in": "header",
"required": true
}
],
"responses": {
"200": {
"description": "许可链接",
"schema": {
"type": "string"
}
},
"400": {
"description": "具体错误",
"schema": {
"$ref": "#/definitions/md.Response"
}
}
}
}
},
"/api/v1/circleFriends/isCanComment": {
"get": {
"description": "是否可以评论",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"朋友圈"
],
"summary": "朋友圈-是否可以评论",
"parameters": [
{
"type": "string",
"description": "验证参数Bearer和token空格拼接",
"name": "Authorization",
"in": "header",
"required": true
}
],
"responses": {
"200": {
"description": "许可链接",
"schema": {
"type": "string"
}
},
"400": {
"description": "具体错误",
"schema": {
"$ref": "#/definitions/md.Response"
}
}
}
}
},
"/api/v1/college/cate": {
"get": {
"description": "蛋蛋学院-分类",
@@ -3991,6 +4067,10 @@ const docTemplate = `{
"description": "下次可观看广告时间,若为空允许观看视频",
"type": "string"
},
"next_watch_ad_secs": {
"description": "下次可观看广告时间,若为空允许观看视频",
"type": "integer"
},
"residue_watch_ad_num": {
"description": "当前剩余可观看视频数",
"type": "integer"


+ 80
- 0
docs/swagger.json 파일 보기

@@ -495,6 +495,82 @@
}
}
},
"/api/v1/circleFriends/comment": {
"get": {
"description": "是否可以评论",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"朋友圈"
],
"summary": "朋友圈-评论",
"parameters": [
{
"type": "string",
"description": "验证参数Bearer和token空格拼接",
"name": "Authorization",
"in": "header",
"required": true
}
],
"responses": {
"200": {
"description": "许可链接",
"schema": {
"type": "string"
}
},
"400": {
"description": "具体错误",
"schema": {
"$ref": "#/definitions/md.Response"
}
}
}
}
},
"/api/v1/circleFriends/isCanComment": {
"get": {
"description": "是否可以评论",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"朋友圈"
],
"summary": "朋友圈-是否可以评论",
"parameters": [
{
"type": "string",
"description": "验证参数Bearer和token空格拼接",
"name": "Authorization",
"in": "header",
"required": true
}
],
"responses": {
"200": {
"description": "许可链接",
"schema": {
"type": "string"
}
},
"400": {
"description": "具体错误",
"schema": {
"$ref": "#/definitions/md.Response"
}
}
}
}
},
"/api/v1/college/cate": {
"get": {
"description": "蛋蛋学院-分类",
@@ -3985,6 +4061,10 @@
"description": "下次可观看广告时间,若为空允许观看视频",
"type": "string"
},
"next_watch_ad_secs": {
"description": "下次可观看广告时间,若为空允许观看视频",
"type": "integer"
},
"residue_watch_ad_num": {
"description": "当前剩余可观看视频数",
"type": "integer"


+ 53
- 0
docs/swagger.yaml 파일 보기

@@ -666,6 +666,9 @@ definitions:
next_watch_ad_date:
description: 下次可观看广告时间,若为空允许观看视频
type: string
next_watch_ad_secs:
description: 下次可观看广告时间,若为空允许观看视频
type: integer
residue_watch_ad_num:
description: 当前剩余可观看视频数
type: integer
@@ -1743,6 +1746,56 @@ paths:
summary: 广告状态 看完之后拿到广告唯一值
tags:
- 广告位
/api/v1/circleFriends/comment:
get:
consumes:
- application/json
description: 是否可以评论
parameters:
- description: 验证参数Bearer和token空格拼接
in: header
name: Authorization
required: true
type: string
produces:
- application/json
responses:
"200":
description: 许可链接
schema:
type: string
"400":
description: 具体错误
schema:
$ref: '#/definitions/md.Response'
summary: 朋友圈-评论
tags:
- 朋友圈
/api/v1/circleFriends/isCanComment:
get:
consumes:
- application/json
description: 是否可以评论
parameters:
- description: 验证参数Bearer和token空格拼接
in: header
name: Authorization
required: true
type: string
produces:
- application/json
responses:
"200":
description: 许可链接
schema:
type: string
"400":
description: 具体错误
schema:
$ref: '#/definitions/md.Response'
summary: 朋友圈-是否可以评论
tags:
- 朋友圈
/api/v1/college/cate:
get:
consumes:


불러오는 중...
취소
저장