Skip to content

Commit

Permalink
Update docs.go
Browse files Browse the repository at this point in the history
  • Loading branch information
rfinochi committed Feb 23, 2022
1 parent 6900007 commit a3f9f30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/docs.go
Expand Up @@ -311,8 +311,8 @@ const docTemplate_swagger = `{
}
}`

// SwaggerInfo_swagger holds exported Swagger Info so clients can modify it
var SwaggerInfo_swagger = &swag.Spec{
// SwaggerInfo holds exported Swagger Info so clients can modify it
var SwaggerInfo = &swag.Spec{
Version: "1.0",
Host: "todo.golang-workshop.io",
BasePath: "/api",
Expand All @@ -324,5 +324,5 @@ var SwaggerInfo_swagger = &swag.Spec{
}

func init() {
swag.Register(SwaggerInfo_swagger.InstanceName(), SwaggerInfo_swagger)
swag.Register(SwaggerInfo.InstanceName(), SwaggerInfo)
}

0 comments on commit a3f9f30

Please sign in to comment.