Hopefully fix the issue when using go get

This commit is contained in:
THCFree 2024-10-11 15:39:36 +02:00
parent f36c0a7817
commit e9128d7b90
2 changed files with 3 additions and 3 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module traktorNmlUtils module git.thcfree.dev/THCFree/TraktorNmlUtils
go 1.23.1 go 1.23.1

View File

@ -2,12 +2,12 @@ package main
import ( import (
"fmt" "fmt"
"git.thcfree.dev/THCFree/TraktorNmlUtils/models/collection"
"git.thcfree.dev/THCFree/TraktorNmlUtils/models/history"
"github.com/urfave/cli/v2" "github.com/urfave/cli/v2"
"log" "log"
"os" "os"
"path/filepath" "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 // 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