porting all github actions from bluesky-social/indigo to tangled CI
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at ci 11 lines 247 B view raw
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}