Delete removes a key. Idempotent: deleting a missing key is not an error.
(ctx context.Context, key string)
| 76 | // Delete removes a key. Idempotent: deleting a missing key is not |
| 77 | // an error. |
| 78 | Delete(ctx context.Context, key string) error |
| 79 | |
| 80 | // Presign returns a URL that grants the named operation on the key |
| 81 | // for ttl. Backends that don't support presigning (e.g. local) MAY |
no outgoing calls