(ctx context.Context, key string, value string, ttl time.Duration)
| 8 | // Cache stores items temporarily |
| 9 | type Cache interface { |
| 10 | Set(ctx context.Context, key string, value string, ttl time.Duration) error |
| 11 | Get(ctx context.Context, key string) (value string, err error) |
| 12 | } |
no outgoing calls