good morning!!!!

Skip to content
Snippets Groups Projects
Commit acd3af70 authored by a's avatar a
Browse files

wip

parent 0bdeb671
No related branches found
No related tags found
Loading
......@@ -8,13 +8,18 @@ import (
"github.com/go-openapi/spec"
)
type GoGlobal struct {
Structs map[string]*GoStruct
Types map[string]*GoType
Methods map[string]*GoMethod
}
type GoStruct struct {
Name string
Description string
Fields map[string]string
}
type GoField struct {
Name string
Type *GoType
......@@ -30,12 +35,6 @@ type GoType struct {
Description string
}
type GoGlobal struct {
Structs map[string]*GoStruct
Types map[string]*GoType
Methods map[string]*GoMethod
}
type GoMethod struct {
Input string
Output string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment