(key string)
| 231 | } |
| 232 | |
| 233 | func (s *SharedState) Has(key string) (bool, error) { |
| 234 | return s.HasWithContext(context.Background(), key) |
| 235 | } |
| 236 | |
| 237 | func (s *SharedState) HasWithContext(ctx context.Context, key string) (bool, error) { |
| 238 | if err := s.ensureStorage(); err != nil { |