123456789101112131415161718 |
- package config
- import "github.com/zeromicro/go-zero/zrpc"
- type Config struct {
- zrpc.RpcServerConf
- OssEndPoint string
- OssAccessKeyId string
- OssAccessKeySecret string
- FileSystemConf zrpc.RpcClientConf
- RedisAddress string
- FileSize int
- ContentType string
- }
- var (
- Cf Config
- )
|