diff options
author | emile <hanemile@protonmail.com> | 2018-10-19 18:51:40 +0200 |
---|---|---|
committer | emile <hanemile@protonmail.com> | 2018-10-19 18:51:40 +0200 |
commit | a108be356f9c17c54bd6e6918be7093913f5b8e4 (patch) | |
tree | fe6db70915cfd5b77150ef181452b3cfe7756cd1 | |
parent | a759b1c59e63f5515a03183fba79d36491b2d717 (diff) |
Replaced the filthy relatives imports through glorious absolute ones
-rw-r--r-- | csv/csv.go | 4 | ||||
-rw-r--r-- | draw/draw.go | 2 | ||||
-rw-r--r-- | forces/forces.go | 2 | ||||
-rw-r--r-- | main.go | 8 |
4 files changed, 8 insertions, 8 deletions
diff --git a/csv/csv.go b/csv/csv.go index bef3bd9..007c0f9 100644 --- a/csv/csv.go +++ b/csv/csv.go @@ -1,8 +1,8 @@ package csv import ( - "../file" - "../structs" + "git.darknebu.la/GalaxySimulator/Source/file" + "git.darknebu.la/GalaxySimulator/Source/structs" "git.darknebu.la/bit/logplus" "math/rand" "strconv" diff --git a/draw/draw.go b/draw/draw.go index 06d76e2..fbf8d9f 100644 --- a/draw/draw.go +++ b/draw/draw.go @@ -1,7 +1,7 @@ package draw import ( - "../structs" + "git.darknebu.la/GalaxySimulator/Source/structs" "github.com/fogleman/gg" "math" ) diff --git a/forces/forces.go b/forces/forces.go index 5e29dc8..7130503 100644 --- a/forces/forces.go +++ b/forces/forces.go @@ -1,7 +1,7 @@ package forces import ( - "../structs" + "git.darknebu.la/GalaxySimulator/Source/structs" "fmt" "git.darknebu.la/bit/logplus" "gopkg.in/cheggaaa/pb.v1" diff --git a/main.go b/main.go index 97d9986..7424965 100644 --- a/main.go +++ b/main.go @@ -1,10 +1,10 @@ package main import ( - "./csv" - "./draw" - "./forces" - "./structs" + "git.darknebu.la/GalaxySimulator/Source/csv" + "git.darknebu.la/GalaxySimulator/Source/draw" + "git.darknebu.la/GalaxySimulator/Source/forces" + "git.darknebu.la/GalaxySimulator/Source/structs" "fmt" "git.darknebu.la/bit/logplus" "math" |