新增物流接口

This commit is contained in:
zhongqiang
2025-06-20 18:03:39 +08:00
parent 3676395e9f
commit 12db943012
3 changed files with 272 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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)
}