From cf83eeab8607e2b43be397dfc613fc416c79589d Mon Sep 17 00:00:00 2001 From: Egor Aristov Date: Thu, 16 Oct 2025 13:08:34 +0300 Subject: [PATCH] stubs for codegen --- kitcom/main.go | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 {