1package cachestore
2
3import (
4 "context"
5)
6
7type CacheStore interface {
8 Get(ctx context.Context, name, key string) (string, error)
9 Set(ctx context.Context, name, key string, val string) error
10 Purge(ctx context.Context, name, key string) error
11}