|
- // Code generated by swaggo/swag. DO NOT EDIT.
-
- package docs
-
- import "github.com/swaggo/swag"
-
- const docTemplate = `{
- "schemes": {{ marshal .Schemes }},
- "swagger": "2.0",
- "info": {
- "description": "{{escape .Description}}",
- "title": "{{.Title}}",
- "contact": {},
- "version": "{{.Version}}"
- },
- "host": "{{.Host}}",
- "basePath": "{{.BasePath}}",
- "paths": {
- "/api/v1/email/code": {
- "post": {
- "description": "Use email to send verification code",
- "produces": [
- "application/json"
- ],
- "tags": [
- "mail"
- ],
- "summary": "SendCode",
- "parameters": [
- {
- "description": "Email address",
- "name": "data",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/param.SendToParams"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "Send success",
- "schema": {
- "allOf": [
- {
- "$ref": "#/definitions/response.Response"
- },
- {
- "type": "object",
- "properties": {
- "msg": {
- "type": "string"
- }
- }
- }
- ]
- }
- }
- }
- }
- }
- },
- "definitions": {
- "param.SendToParams": {
- "type": "object",
- "required": [
- "email"
- ],
- "properties": {
- "email": {
- "type": "string"
- }
- }
- },
- "response.Response": {
- "type": "object",
- "properties": {
- "code": {
- "type": "integer"
- },
- "data": {},
- "msg": {
- "type": "string"
- }
- }
- }
- }
- }`
-
- // SwaggerInfo holds exported Swagger Info so clients can modify it
- var SwaggerInfo = &swag.Spec{
- Version: "",
- Host: "",
- BasePath: "",
- Schemes: []string{},
- Title: "",
- Description: "",
- InfoInstanceName: "swagger",
- SwaggerTemplate: docTemplate,
- LeftDelim: "{{",
- RightDelim: "}}",
- }
-
- func init() {
- swag.Register(SwaggerInfo.InstanceName(), SwaggerInfo)
- }
|