增加openapi文档基础的信息定义 + parameter基础定义

This commit is contained in:
2024-07-19 15:59:20 +08:00
parent 723d0e477c
commit 458d33cba5
3 changed files with 152 additions and 35 deletions

23
parser.go Normal file
View File

@ -0,0 +1,23 @@
// Package api_doc ...
//
// Description : api_doc ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2024-07-19 11:45
package api_doc
var (
Parser = &parser{}
)
type parser struct {
}
func (p *parser) Openapi3() {
}
func (p *parser) swagger2() {
}