| 132 | } |
| 133 | |
| 134 | type InMemorySessionStore struct { |
| 135 | sessions *concurrent.Map[string, *Session] |
| 136 | messageID int64 // simple counter for message IDs |
| 137 | } |
| 138 | |
| 139 | func NewInMemorySessionStore() Store { |
| 140 | return &InMemorySessionStore{ |
nothing calls this directly
no outgoing calls
no test coverage detected