(key string)
| 90 | } |
| 91 | |
| 92 | func (s *contextCheckingStorage) Get(key string) ([]byte, error) { |
| 93 | return s.GetWithContext(context.Background(), key) |
| 94 | } |
| 95 | |
| 96 | func (s *contextCheckingStorage) Set(key string, val []byte, exp time.Duration) error { |
| 97 | return s.SetWithContext(context.Background(), key, val, exp) |
nothing calls this directly
no test coverage detected