Get returns a value based on its "key".
(key string)
| 60 | |
| 61 | // Get returns a value based on its "key". |
| 62 | func (s *Session) Get(key string) interface{} { |
| 63 | return s.provider.db.Get(s.sid, key) |
| 64 | } |
| 65 | |
| 66 | // Decode binds the given "outPtr" to the value associated to the provided "key". |
| 67 | func (s *Session) Decode(key string, outPtr interface{}) error { |
no test coverage detected