diff --git a/kitcom/main.go b/kitcom/main.go index 1977b72..1d0586c 100644 --- a/kitcom/main.go +++ b/kitcom/main.go @@ -27,7 +27,17 @@ func parseFlags() { flag.Parse() } +type Method struct { + Name string +} + +type Endpoint struct { + Name string + Methods []Method +} + type Api struct { + Endpoints []Endpoint } type ApiParser interface {