From a108be356f9c17c54bd6e6918be7093913f5b8e4 Mon Sep 17 00:00:00 2001 From: emile Date: Fri, 19 Oct 2018 18:51:40 +0200 Subject: Replaced the filthy relatives imports through glorious absolute ones --- csv/csv.go | 4 ++-- draw/draw.go | 2 +- forces/forces.go | 2 +- 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" -- cgit 1.4.1