Skip to content

Commit

Permalink
module structure refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
zelenin committed Feb 23, 2022
1 parent 1e47aa6 commit 249ac00
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
builds:
- id: pak-extracter
main: ./cmd/pak-extracter.go
main: ./cmd/pak-extracter/main.go
binary: pak-extracter
flags:
- -trimpath
Expand All @@ -9,7 +9,7 @@ builds:
targets:
- windows_amd64
- id: datasheet-converter
main: ./cmd/datasheet-converter.go
main: ./cmd/datasheet-converter/main.go
binary: datasheet-converter
flags:
- -trimpath
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"flag"
"fmt"
"github.com/ake-persson/mapslice-json"
"github.com/new-world-tools/extracter/datasheet"
"github.com/new-world-tools/extracter/profiler"
"github.com/new-world-tools/new-world-tools/datasheet"
"github.com/new-world-tools/new-world-tools/profiler"
workerpool "github.com/zelenin/go-worker-pool"
"log"
"math"
Expand Down
6 changes: 3 additions & 3 deletions cmd/pak-extracter.go → cmd/pak-extracter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"errors"
"flag"
"fmt"
"github.com/new-world-tools/extracter/hash"
"github.com/new-world-tools/extracter/pak"
"github.com/new-world-tools/extracter/profiler"
"github.com/new-world-tools/go-oodle"
"github.com/new-world-tools/new-world-tools/hash"
"github.com/new-world-tools/new-world-tools/pak"
"github.com/new-world-tools/new-world-tools/profiler"
workerpool "github.com/zelenin/go-worker-pool"
"io"
"log"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/new-world-tools/extracter
module github.com/new-world-tools/new-world-tools

go 1.17

Expand Down

0 comments on commit 249ac00

Please sign in to comment.