(name, entrance, ip string)
| 39 | } |
| 40 | |
| 41 | func (s *mfaSessionStore) Set(name, entrance, ip string) string { |
| 42 | return s.store.Set(mfaSession{ |
| 43 | Name: name, |
| 44 | Entrance: entrance, |
| 45 | IP: ip, |
| 46 | }) |
| 47 | } |
| 48 | |
| 49 | func (s *mfaSessionStore) Get(sessionID string) (mfaSession, bool) { |
| 50 | return s.store.Get(sessionID) |
no outgoing calls
no test coverage detected