新增物流接口

This commit is contained in:
zhongqiang
2025-06-23 16:00:54 +08:00
parent 12db943012
commit 9eecda8c5f
3 changed files with 37 additions and 6 deletions

View File

@@ -8,4 +8,5 @@ import (
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
}