This commit is contained in:
Philipp Heckel 2021-12-20 20:46:51 -05:00
parent edb6b0cf06
commit 85b4abde6c
5 changed files with 123 additions and 55 deletions

View file

@ -7,12 +7,12 @@ const (
// Config is the config struct for a Client
type Config struct {
DefaultHost string
DefaultHost string `yaml:"default-host"`
Subscribe []struct {
Topic string
Command string
Topic string `yaml:"topic"`
Command string `yaml:"command"`
// If []map[string]string TODO This would be cool
}
} `yaml:"subscribe"`
}
// NewConfig creates a new Config struct for a Client