1 Star 0 Fork 230

php—小菜鸟 / syncd

forked from dreamans / syncd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config.go 1.20 KB
一键复制 编辑 Web IDE 原始数据 按行查看 历史
dreamans 提交于 2019-03-26 20:42 . feature/2.0
// Copyright 2019 syncd Author. All Rights Reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package syncd
type (
Config struct {
Serve *ServeConfig
Db *DbConfig
Log *LogConfig
Syncd *SyncdConfig
Mail *MailConfig
}
SyncdConfig struct {
LocalSpace string
RemoteSpace string
Cipher string
AppHost string
}
LogConfig struct {
Path string
}
MailConfig struct {
Enable int
Smtp string
Port int
User string
Pass string
}
ServeConfig struct {
Addr string
FeServeEnable int
ReadTimeout int
WriteTimeout int
IdleTimeout int
}
DbConfig struct {
Unix string
Host string
Port int
Charset string
User string
Pass string
DbName string
TablePrefix string
MaxIdleConns int
MaxOpenConns int
ConnMaxLifeTime int
}
)
Go
1
https://gitee.com/recallg/syncd.git
git@gitee.com:recallg/syncd.git
recallg
syncd
syncd
master

搜索帮助