This commit is contained in:
XM-GO
2023-08-22 15:17:14 +08:00
parent 85f4f328f4
commit 4344771547
143 changed files with 13004 additions and 6957 deletions

9
pkg/config/taos.go Normal file
View File

@@ -0,0 +1,9 @@
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"`
}