watcher/pkg/options/db.go
timerzz dcd21a0cd9
Some checks failed
Build image / build (push) Failing after 15s
feat 数据库改为pgsql
2024-05-12 16:35:46 +08:00

10 lines
203 B
Go

package options
type DBOption struct {
Host string `yaml:"host"`
User string `yaml:"user"`
Password string `yaml:"password"`
Port string `yaml:"port"`
DBName string `yaml:"dbname"`
}