(keys ...string)
| 75 | } |
| 76 | |
| 77 | func (m *SessionModule) InitState(keys ...string) { |
| 78 | for _, key := range keys { |
| 79 | m.State.Store(key, nil) |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | func (m *SessionModule) ResetState() { |
| 84 | m.State.Range(func(k, v interface{}) bool { |
no outgoing calls
no test coverage detected