diff --git a/src/console.go b/src/console.go index 2b8af09..91ca864 100644 --- a/src/console.go +++ b/src/console.go @@ -8,11 +8,11 @@ import ( "path/filepath" "strings" - "github.com/giwty/switch-library-manager/db" - "github.com/giwty/switch-library-manager/process" - "github.com/giwty/switch-library-manager/settings" "github.com/jedib0t/go-pretty/table" "github.com/schollz/progressbar/v3" + "github.com/trembon/switch-library-manager/db" + "github.com/trembon/switch-library-manager/process" + "github.com/trembon/switch-library-manager/settings" "go.uber.org/zap" ) diff --git a/src/db/localSwitchFilesDB.go b/src/db/localSwitchFilesDB.go index ee92b01..82613e9 100644 --- a/src/db/localSwitchFilesDB.go +++ b/src/db/localSwitchFilesDB.go @@ -9,9 +9,9 @@ import ( "strconv" "strings" - "github.com/giwty/switch-library-manager/fileio" - "github.com/giwty/switch-library-manager/settings" - "github.com/giwty/switch-library-manager/switchfs" + "github.com/trembon/switch-library-manager/fileio" + "github.com/trembon/switch-library-manager/settings" + "github.com/trembon/switch-library-manager/switchfs" "go.uber.org/zap" ) diff --git a/src/db/persistentDB.go b/src/db/persistentDB.go index 0a797c0..99e395f 100644 --- a/src/db/persistentDB.go +++ b/src/db/persistentDB.go @@ -4,11 +4,12 @@ import ( "bytes" "encoding/gob" "fmt" - "github.com/boltdb/bolt" - "github.com/giwty/switch-library-manager/settings" - "go.uber.org/zap" "log" "path/filepath" + + "github.com/boltdb/bolt" + "github.com/trembon/switch-library-manager/settings" + "go.uber.org/zap" ) const ( diff --git a/src/fileio/splitFileUtil.go b/src/fileio/splitFileUtil.go index f7760d0..3c5a680 100644 --- a/src/fileio/splitFileUtil.go +++ b/src/fileio/splitFileUtil.go @@ -2,8 +2,9 @@ package fileio import ( "errors" - "github.com/giwty/switch-library-manager/switchfs" "os" + + "github.com/trembon/switch-library-manager/switchfs" ) func ReadSplitFileMetadata(filePath string) (map[string]*switchfs.ContentMetaAttributes, error) { diff --git a/src/go.mod b/src/go.mod index 3031e49..6092335 100644 --- a/src/go.mod +++ b/src/go.mod @@ -1,4 +1,4 @@ -module github.com/giwty/switch-library-manager +module github.com/trembon/switch-library-manager go 1.20 diff --git a/src/gui.go b/src/gui.go index 45a9662..4f05864 100644 --- a/src/gui.go +++ b/src/gui.go @@ -14,9 +14,9 @@ import ( "github.com/asticode/go-astikit" "github.com/asticode/go-astilectron" bootstrap "github.com/asticode/go-astilectron-bootstrap" - "github.com/giwty/switch-library-manager/db" - "github.com/giwty/switch-library-manager/process" - "github.com/giwty/switch-library-manager/settings" + "github.com/trembon/switch-library-manager/db" + "github.com/trembon/switch-library-manager/process" + "github.com/trembon/switch-library-manager/settings" "go.uber.org/zap" ) diff --git a/src/main.go b/src/main.go index 4d0b17d..a444d49 100644 --- a/src/main.go +++ b/src/main.go @@ -8,7 +8,7 @@ import ( "runtime" "strings" - "github.com/giwty/switch-library-manager/settings" + "github.com/trembon/switch-library-manager/settings" "go.uber.org/zap" ) diff --git a/src/process/incompleteTitleProcessor.go b/src/process/incompleteTitleProcessor.go index 21965ad..e4bcabb 100644 --- a/src/process/incompleteTitleProcessor.go +++ b/src/process/incompleteTitleProcessor.go @@ -5,8 +5,8 @@ import ( "sort" "strconv" - "github.com/giwty/switch-library-manager/db" - "github.com/giwty/switch-library-manager/switchfs" + "github.com/trembon/switch-library-manager/db" + "github.com/trembon/switch-library-manager/switchfs" "go.uber.org/zap" ) diff --git a/src/process/organizefolderStructure.go b/src/process/organizefolderStructure.go index 3f41ac9..25f9bbc 100644 --- a/src/process/organizefolderStructure.go +++ b/src/process/organizefolderStructure.go @@ -9,8 +9,8 @@ import ( "strconv" "strings" - "github.com/giwty/switch-library-manager/db" - "github.com/giwty/switch-library-manager/settings" + "github.com/trembon/switch-library-manager/db" + "github.com/trembon/switch-library-manager/settings" "go.uber.org/zap" "robpike.io/nihongo" ) diff --git a/src/switchfs/nca.go b/src/switchfs/nca.go index a7784b2..047ca9f 100644 --- a/src/switchfs/nca.go +++ b/src/switchfs/nca.go @@ -7,9 +7,10 @@ import ( "encoding/hex" "errors" "fmt" - "github.com/giwty/switch-library-manager/settings" - "github.com/giwty/switch-library-manager/switchfs/_crypto" "io" + + "github.com/trembon/switch-library-manager/settings" + "github.com/trembon/switch-library-manager/switchfs/_crypto" ) const ( diff --git a/src/switchfs/ncaHeader.go b/src/switchfs/ncaHeader.go index 7754fbd..4d52f3c 100644 --- a/src/switchfs/ncaHeader.go +++ b/src/switchfs/ncaHeader.go @@ -4,8 +4,9 @@ import ( "crypto/aes" "encoding/binary" "encoding/hex" - "github.com/giwty/switch-library-manager/switchfs/_crypto" "strconv" + + "github.com/trembon/switch-library-manager/switchfs/_crypto" ) //https://switchbrew.org/wiki/NCA_Format