(key string, value interface{}, immutable bool)
| 519 | } |
| 520 | |
| 521 | func (s *Session) set(key string, value interface{}, immutable bool) { |
| 522 | s.provider.db.Set(s.sid, key, value, s.Lifetime.DurationUntilExpiration(), immutable) |
| 523 | } |
| 524 | |
| 525 | // Set fills the session with an entry "value", based on its "key". |
| 526 | func (s *Session) Set(key string, value interface{}) { |
no test coverage detected