diff options
| -rw-r--r-- | compressor/compressor.go | 4 | ||||
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | main.go | 12 | ||||
| -rw-r--r-- | ui.go | 12 | ||||
| -rw-r--r-- | util/util.go | 6 |
5 files changed, 18 insertions, 18 deletions
diff --git a/compressor/compressor.go b/compressor/compressor.go index 5d73fdc..9983ecb 100644 --- a/compressor/compressor.go +++ b/compressor/compressor.go @@ -6,8 +6,8 @@ import ( fp "path/filepath" "strings" - "github.com/sam-anthony/volute/mass" - "github.com/sam-anthony/volute/util" + "volute/mass" + "volute/util" ) const root = "compressor_maps/" @@ -1,4 +1,4 @@ -module github.com/sam-anthony/volute +module volute go 1.18 @@ -8,12 +8,12 @@ import ( _ "image/jpeg" "os" - "github.com/sam-anthony/volute/compressor" - "github.com/sam-anthony/volute/mass" - "github.com/sam-anthony/volute/pressure" - "github.com/sam-anthony/volute/temperature" - "github.com/sam-anthony/volute/util" - "github.com/sam-anthony/volute/volume" + "volute/compressor" + "volute/mass" + "volute/pressure" + "volute/temperature" + "volute/util" + "volute/volume" ) const ( @@ -8,12 +8,12 @@ import ( "image/draw" "strconv" - "github.com/sam-anthony/volute/compressor" - "github.com/sam-anthony/volute/mass" - "github.com/sam-anthony/volute/pressure" - "github.com/sam-anthony/volute/temperature" - "github.com/sam-anthony/volute/util" - "github.com/sam-anthony/volute/volume" + "volute/compressor" + "volute/mass" + "volute/pressure" + "volute/temperature" + "volute/util" + "volute/volume" ) func red() color.RGBA { diff --git a/util/util.go b/util/util.go index 5812ee1..b0eae51 100644 --- a/util/util.go +++ b/util/util.go @@ -4,9 +4,9 @@ import ( "fmt" "os" - "github.com/sam-anthony/volute/mass" - "github.com/sam-anthony/volute/pressure" - "github.com/sam-anthony/volute/temperature" + "volute/mass" + "volute/pressure" + "volute/temperature" ) func Check(err error) { |