From e9128d7b906992e356b5efbbb24316a7e124930a Mon Sep 17 00:00:00 2001 From: THCFree Date: Fri, 11 Oct 2024 15:39:36 +0200 Subject: [PATCH] Hopefully fix the issue when using go get --- go.mod | 2 +- main.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 0db0186..0fdf2fc 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module traktorNmlUtils +module git.thcfree.dev/THCFree/TraktorNmlUtils go 1.23.1 diff --git a/main.go b/main.go index 90422b2..308f944 100644 --- a/main.go +++ b/main.go @@ -2,12 +2,12 @@ package main import ( "fmt" + "git.thcfree.dev/THCFree/TraktorNmlUtils/models/collection" + "git.thcfree.dev/THCFree/TraktorNmlUtils/models/history" "github.com/urfave/cli/v2" "log" "os" "path/filepath" - "traktorNmlUtils/models/collection" - "traktorNmlUtils/models/history" ) // Most of this code is based on the original python library https://github.com/wolkenarchitekt/traktor-nml-utils/ thus is subject to the same license reference it at LICENSE.txt