feat: add profile route and ui
ci-api / test (push) Failing after 34m42s
ci-web / test (push) Failing after 24m16s

This commit is contained in:
Nuxgrid
2026-07-28 22:00:46 +02:00
parent cb651a04e2
commit ef280799c1
10 changed files with 297 additions and 4 deletions
+16
View File
@@ -0,0 +1,16 @@
package profile
import (
"sync"
"github.com/omnex/control-plane/api/internal/auth"
)
type MemStore struct {
mu sync.RWMutex
items map[string]auth.User
}
func NewMemStore() *MemStore {
return &MemStore{items: make(map[string]auth.User)}
}