()
| 13 | } |
| 14 | |
| 15 | func NewMemoryStore() *MemoryStore { |
| 16 | return &MemoryStore{ |
| 17 | users: make(map[string]User), |
| 18 | inbounds: make(map[string]UserInbound), |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | // ─── User CRUD ──────────────────────────────────────────────────────────────── |
| 23 |
no outgoing calls