watcher/pkg/options/db.go

10 lines
203 B
Go
Raw Normal View History

2024-04-10 17:36:56 +08:00
package options
type DBOption struct {
2024-05-12 16:35:46 +08:00
Host string `yaml:"host"`
User string `yaml:"user"`
Password string `yaml:"password"`
Port string `yaml:"port"`
DBName string `yaml:"dbname"`
2024-04-10 17:36:56 +08:00
}