(key string, val []byte, exp time.Duration)
| 94 | } |
| 95 | |
| 96 | func (s *contextCheckingStorage) Set(key string, val []byte, exp time.Duration) error { |
| 97 | return s.SetWithContext(context.Background(), key, val, exp) |
| 98 | } |
| 99 | |
| 100 | func (s *contextCheckingStorage) Delete(key string) error { |
| 101 | return s.DeleteWithContext(context.Background(), key) |
nothing calls this directly
no test coverage detected