diff --git a/README.md b/README.md index ec5e071..bec7ae4 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This software allows mapping and translating of MIDI commands to HID inputs on L Install with ```bash -go install git.datalore.sh/datalore/midi-hid@latest +go install github.com/d4t4l0r3/midi-hid@latest ``` and run it with `midi-hid`. If no config file is specified, it reads `~/.config/midi-hid/config.yaml`. diff --git a/config/config.go b/config/config.go index ade05ab..fe1340a 100644 --- a/config/config.go +++ b/config/config.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "git.datalore.sh/datalore/midi-hid/translation" + "github.com/d4t4l0r3/midi-hid/translation" "github.com/goccy/go-yaml" "github.com/bendahl/uinput" diff --git a/go.mod b/go.mod index 478140c..3ad605a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.datalore.sh/datalore/midi-hid +module github.com/d4t4l0r3/midi-hid go 1.24.5 diff --git a/main.go b/main.go index bc6fd14..f14c701 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,7 @@ import ( "os" "os/signal" - "git.datalore.sh/datalore/midi-hid/config" + "github.com/d4t4l0r3/midi-hid/config" "github.com/charmbracelet/log" "gitlab.com/gomidi/midi/v2"