ssgf_utils/express_tool/express_cache.go
2025-06-23 16:00:54 +08:00

13 lines
273 B
Go

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