我正在尝试从我的 API 处理程序中使用生成招摇规范。
我已经从以下位置安装了 go-swagger go get
:
go get -u github.com/go-swagger/go-swagger/cmd/swagger
请参阅下面的项目结构:
main.go使用处理程序定义products.go。(API 工作并经过测试)
招摇规格在 product.go:
// Package classification of Product API.
//
// Documenting for Product API
//
//
//
// Schemes: http, https
// BasePath: /
// Version: 0.0.1
//
// Consumes:
// - application/json
//
// Produces:
// - application/json
//
// swagger:meta
main.go从路径运行以下命令:
GO111MODULE=off swagger generate spec -o ./swagger.yaml --scan-models
回复:
info: {}
paths: {}
swagger: "2.0"
预期反应:
basePath: /
consumes:
- application/json
info:
description: Documenting for Product API
title:
version: 0.0.1
paths: {}
producrs:
- application/json
schemes:
- http
swagger: "2.0"
富国沪深
天涯尽头无女友
相关分类