MustGetBool returns the bool value with specified key in session object.
(key string)
| 235 | |
| 236 | // MustGetBool returns the bool value with specified key in session object. |
| 237 | func (s *Session) MustGetBool(key string) (value bool) { |
| 238 | value, _ = s.GetBool(key) |
| 239 | return |
| 240 | } |
| 241 | |
| 242 | // Set stores value to session object. |
| 243 | func (s *Session) Set(key string, value interface{}) { |
no test coverage detected