升级代码组织

This commit is contained in:
2025-05-07 14:25:44 +08:00
parent 94fdab4e36
commit 088670c7d4
6 changed files with 99 additions and 80 deletions

17
httpclient/option.go Normal file
View File

@ -0,0 +1,17 @@
// Package httpclient ...
//
// Description : httpclient ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2025-05-07 12:19
package httpclient
import (
"git.zhangdeman.cn/zhangdeman/network/httpclient/abstract"
)
// RequestOption 请求一些选项
type RequestOption struct {
CacheInstance abstract.ICache `json:"-"` // 数据结果缓存实例
}