优化文档数据结构图

This commit is contained in:
2025-02-26 11:10:47 +08:00
parent 22550f9ac0
commit b5dbc330fc
2 changed files with 8 additions and 3 deletions

View File

@ -94,3 +94,8 @@ func Test_parser_Openapi3(t *testing.T) {
byteData, _ := json.Marshal(g.docData)
fmt.Println(string(byteData))
}
func Test_parse_Openapi3_doc(t *testing.T) {
res, err := ParseOpenapi3("http://localhost:10990/static-server/github-openapi.json", "")
fmt.Println(res, err)
}