(key string)
| 214 | } |
| 215 | |
| 216 | func (s *SharedState) Delete(key string) error { |
| 217 | return s.DeleteWithContext(context.Background(), key) |
| 218 | } |
| 219 | |
| 220 | func (s *SharedState) DeleteWithContext(ctx context.Context, key string) error { |
| 221 | if err := s.ensureStorage(); err != nil { |