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 /csv | |
parent | a759b1c59e63f5515a03183fba79d36491b2d717 (diff) |
Replaced the filthy relatives imports through glorious absolute ones
Diffstat (limited to 'csv')
-rw-r--r-- | csv/csv.go | 4 |
1 files changed, 2 insertions, 2 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" |