From 3ab5daa61c796cd07e97d584768a09601c5dc676 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Thu, 29 Sep 2022 18:04:13 +0100 Subject: [PATCH] update install instructions in readme. --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f233805..d3c4412 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,12 @@ For an outline of past/future changes refer to: [CHANGELOG](CHANGELOG.md) ## Installation -`go get github.com/onyx-and-iris/voicemeeter` +Initialize your own module then `go get` + +``` +go mod init github.com/x/y +go get github.com/onyx-and-iris/voicemeeter +``` ## `Use` @@ -48,7 +53,7 @@ func main() { } func vmConnect() (*voicemeeter.Remote, error) { - vm, err := voicemeeter.NewRemote("banana", 15) + vm, err := voicemeeter.NewRemote("banana", 20) if err != nil { return nil, err }