|
1234567891011121314151617181920212223242526272829 |
- package config
-
- import (
- "gitlink.org.cn/cloudream/common/utils/config"
- "gitlink.org.cn/cloudream/common/utils/ipfs"
- "gitlink.org.cn/cloudream/common/utils/logger"
- racfg "gitlink.org.cn/cloudream/rabbitmq/config"
- )
-
- type Config struct {
- GRPCPort int `json:"grpcPort"`
- GRCPPacketSize int64 `json:"grpcPacketSize"`
- MaxRepCount int `json:"maxRepCount"`
- LocalIP string `json:"localIP"`
- ExternalIP string `json:"externalIP"`
- Logger logger.Config `json:"logger"`
- RabbitMQ racfg.Config `json:"rabbitMQ"`
- IPFS *ipfs.Config `json:"ipfs"` // 此字段非空代表客户端上存在ipfs daemon
- }
-
- var cfg Config
-
- func Init() error {
- return config.DefaultLoad("client", &cfg)
- }
-
- func Cfg() *Config {
- return &cfg
- }
|