diff options
author | Christian Pointner <equinox@spreadspace.org> | 2020-04-13 18:56:15 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2020-04-13 18:56:15 +0200 |
commit | 46d195ccc3db6e47120d3813bf5414176482192d (patch) | |
tree | 6eaa1433cc0b0c4f332ff489a57bfb9b0729dfad /pkg/mixer/config.go | |
parent | add go-modules support and fix midi library API change (diff) | |
parent | statemachine: current vs target vs real (diff) |
Diffstat (limited to 'pkg/mixer/config.go')
-rw-r--r-- | pkg/mixer/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/mixer/config.go b/pkg/mixer/config.go index bc0a292..e25ba2e 100644 --- a/pkg/mixer/config.go +++ b/pkg/mixer/config.go @@ -23,6 +23,6 @@ package mixer type Config struct { - DevIn string `json:"dev-in" yaml:"dev-in" toml:"dev-in"` - DevOut string `json:"dev-out" yaml:"dev-out" toml:"dev-out"` + Host string `json:"host" yaml:"host" toml:"host"` + Port string `json:"port" yaml:"port" toml:"port"` } |