package cache import "time" type DistributdCache interface { Get(key string, out any) error Set(key string, value any, expiration time.Duration) Delete(key string) error Ping() error }