新增物流接口

This commit is contained in:
zhongqiang 2025-06-23 16:59:47 +08:00
parent 9eecda8c5f
commit f7a1a30203

View File

@ -6,7 +6,7 @@ import (
) )
type ICacheAdapter interface { type ICacheAdapter interface {
Set(ctx context.Context, number string, res string, ttl time.Duration) error Set(ctx context.Context, key string, res string, ttl time.Duration) error
Get(ctx context.Context, number string) (*ExpressRes, error) Get(ctx context.Context, key string) (*ExpressRes, error)
Del(ctx context.Context, number string) error Del(ctx context.Context, key string) error
} }