Files
omnex/control-plane/api/internal/profile/mem.go
T
Nuxgrid ef280799c1
ci-api / test (push) Failing after 34m42s
ci-web / test (push) Failing after 24m16s
feat: add profile route and ui
2026-07-28 22:00:46 +02:00

17 lines
250 B
Go

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)}
}