123456789101112131415161718192021222324252627 |
- package config
- import "github.com/zeromicro/go-zero/zrpc"
- type Config struct {
- zrpc.RpcServerConf
- Oss OssStruct
- }
- // OssStruct oss 阿里云附件上传服务
- type OssStruct struct {
- OssEndpoint string `json:"ossEndpoint"`
- OssAccessKeyID string `json:"ossAccessKeyId"`
- OssAccessKeySecret string `json:"ossAccessKeySecret"`
- }
- //日志信息
- type Logc struct {
- Mode string
- Path string
- Level []string
- KeepDays int
- }
- var C Config
- var LogC Logc
|