规划swagger文档逻辑

This commit is contained in:
2024-12-24 10:34:28 +08:00
parent fb9e22ac66
commit d069ead94e
6 changed files with 66 additions and 29 deletions

View File

@ -32,3 +32,8 @@ func Test_parser_Openapi3(t *testing.T) {
fmt.Println("解析成功")
}
}
func TestParseForSwagger(t *testing.T) {
docUrl := "https://git.zhangdeman.cn/swagger.v1.json"
_, _ = Parse(docUrl)
}