From 54339d5c1dafbd030be141dd0fec71a120e22990 Mon Sep 17 00:00:00 2001 From: Vinoth Ramiah Date: Thu, 24 Jun 2021 22:18:48 +0100 Subject: [PATCH] update go module path to github repo --- database/neo_client.go | 2 +- go.mod | 2 +- server.go | 8 ++++---- tools/filesize_calculator.go | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/database/neo_client.go b/database/neo_client.go index bd40b93..2dd32ee 100644 --- a/database/neo_client.go +++ b/database/neo_client.go @@ -12,7 +12,7 @@ import ( "github.com/google/uuid" bolt "github.com/johnnadratowski/golang-neo4j-bolt-driver" - "bitbucket.org/tripup/server/auth" + "github.com/tripupapp/tripup-server/auth" ) var debugLogger *log.Logger = log.New(os.Stdout, "[DEBUG] NeoLog: ", log.LstdFlags | log.Lshortfile) diff --git a/go.mod b/go.mod index c509eb6..8e8719c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module bitbucket.org/tripup/server +module github.com/tripupapp/tripup-server go 1.15 diff --git a/server.go b/server.go index e97acbc..3f4b5de 100644 --- a/server.go +++ b/server.go @@ -20,10 +20,10 @@ import ( "github.com/pressly/chi/middleware" firebaseauth "github.com/vin047/firebase-middleware" - "bitbucket.org/tripup/server/auth" - "bitbucket.org/tripup/server/database" - "bitbucket.org/tripup/server/notification" - "bitbucket.org/tripup/server/storage" + "github.com/tripupapp/tripup-server/auth" + "github.com/tripupapp/tripup-server/database" + "github.com/tripupapp/tripup-server/notification" + "github.com/tripupapp/tripup-server/storage" ) var logger *log.Logger = log.New(os.Stdout, "[INFO] ServerLog: ", log.LstdFlags) diff --git a/tools/filesize_calculator.go b/tools/filesize_calculator.go index d72ff7d..5db52a4 100644 --- a/tools/filesize_calculator.go +++ b/tools/filesize_calculator.go @@ -6,8 +6,8 @@ import ( "log" "os" - "bitbucket.org/tripup/server/storage" bolt "github.com/johnnadratowski/golang-neo4j-bolt-driver" + "github.com/tripupapp/tripup-server/storage" ) var errLogger = log.New(os.Stderr, "[ERROR] ServerLog: ", log.LstdFlags | log.Lshortfile)