stubs for codegen

This commit is contained in:
Egor Aristov 2025-10-16 13:08:34 +03:00
parent 8552a1d7da
commit cf83eeab86
Signed by: egor3f
GPG Key ID: 40482A264AAEC85F

View File

@ -27,7 +27,17 @@ func parseFlags() {
flag.Parse() flag.Parse()
} }
type Method struct {
Name string
}
type Endpoint struct {
Name string
Methods []Method
}
type Api struct { type Api struct {
Endpoints []Endpoint
} }
type ApiParser interface { type ApiParser interface {