feat: add api
docker-publish / publish (push) Failing after 14m14s

This commit is contained in:
Nuxgrid
2026-07-27 16:06:19 +02:00
parent 8397a4470f
commit 6b4274d12b
46 changed files with 3922 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package auth
// Role : rôle applicatif d'un utilisateur du control-plane.
type Role string
const (
RoleClient Role = "client"
RoleAdmin Role = "admin"
)