init: first steps

This commit is contained in:
2025-07-20 23:50:47 +03:00
commit 5f26ad6941
25 changed files with 1134 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package controller
import (
"github.com/go-andiamo/chioas"
"github.com/go-chi/chi/v5"
)
type Controller interface {
New() Controller
Group(r chi.Router)
Documentate() (*chioas.Paths, *chioas.Components)
}