| 7 | ) |
| 8 | |
| 9 | type MemoryStore struct { |
| 10 | mu sync.RWMutex |
| 11 | users map[string]User |
| 12 | inbounds map[string]UserInbound |
| 13 | } |
| 14 | |
| 15 | func NewMemoryStore() *MemoryStore { |
| 16 | return &MemoryStore{ |
nothing calls this directly
no outgoing calls
no test coverage detected