(ctx context.Context, _ string)
| 697 | |
| 698 | func (*contextStorage) Set(_ string, _ []byte, _ time.Duration) error { return nil } |
| 699 | func (*contextStorage) DeleteWithContext(ctx context.Context, _ string) error { |
| 700 | return ctx.Err() //nolint:wrapcheck // test stub returns ctx.Err() verbatim |
| 701 | } |
| 702 | func (*contextStorage) Delete(_ string) error { return nil } |
| 703 | func (*contextStorage) ResetWithContext(ctx context.Context) error { |
| 704 | return ctx.Err() //nolint:wrapcheck // test stub returns ctx.Err() verbatim |