16 lines
317 B
Go
16 lines
317 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"github.com/coocood/freecache"
|
||
|
"github.com/cowardmrx/go_aliyun_oss"
|
||
|
"github.com/go-resty/resty/v2"
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
DB *gorm.DB
|
||
|
Cache *freecache.Cache
|
||
|
OSS *go_aliyun_oss.AliOssClient // oss客户端
|
||
|
HttpClient *resty.Client // http客户端
|
||
|
)
|