feat: add tenant commands

This commit is contained in:
Rogee
2024-12-07 18:48:05 +08:00
parent e15d8d9bb2
commit 8f88929575
25 changed files with 271 additions and 48 deletions

View File

@@ -30,7 +30,6 @@ func (r *Router) Prepare() error {
func (r *Router) Register() any {
r.group.Get("", r.controller.List)
r.group.Get("{id}", r.controller.Show)
return r.app
}