diff options
author | Christian Pointner <equinox@spreadspace.org> | 2020-04-05 19:04:21 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2020-04-05 19:04:21 +0200 |
commit | c7f887a174bf0a95a858e6d31f113da7b6bfffd8 (patch) | |
tree | c3f82fef73516a003cb20bd325834d99ee2affb6 /pkg/mixer/config.go | |
parent | add go-modules support and fix midi library API change (diff) |
begin of major change: switching from midi to OSC
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"` } |