feat(backend): introduce org namespaced api routes

This commit is contained in:
2026-01-02 00:22:08 +00:00
parent ebcdcf2cea
commit 490699e113
10 changed files with 233 additions and 37 deletions

View File

@@ -0,0 +1,7 @@
package organization
import "errors"
var (
ErrOrganizationNotFound = errors.New("organization not found")
)