MustGet returns the value with specified key in session object.
(key string)
| 211 | |
| 212 | // MustGet returns the value with specified key in session object. |
| 213 | func (s *Session) MustGet(key string) (value interface{}) { |
| 214 | value, _ = s.Get(key) |
| 215 | return |
| 216 | } |
| 217 | |
| 218 | // MustGetInt returns the int value with specified key in session object. |
| 219 | func (s *Session) MustGetInt(key string) (value int64) { |
no test coverage detected