ssgf_utils/ali_cloud_tool/express_cache.go
2025-06-26 16:20:14 +08:00

13 lines
266 B
Go

package ali_cloud_tool
import (
"context"
"time"
)
type ICacheAdapter interface {
Set(ctx context.Context, key string, res string, ttl time.Duration) error
Get(ctx context.Context, key string) (*ExpressRes, error)
Del(ctx context.Context, key string) error
}