mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 02:48:34 +08:00
10 lines
277 B
Go
10 lines
277 B
Go
package config
|
|
|
|
type Taos struct {
|
|
Host string `yaml:"host"` // 服务器地址:端口
|
|
Username string `yaml:"username"` // 数据库用户名
|
|
Password string `yaml:"password"` // 数据库密码
|
|
Database string `yaml:"database"`
|
|
Config string `yaml:"config"`
|
|
}
|