Skip to content

Commit

Permalink
update go module path to github repo
Browse files Browse the repository at this point in the history
  • Loading branch information
vin047 committed Jun 24, 2021
1 parent bd7c63f commit 54339d5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion database/neo_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module bitbucket.org/tripup/server
module github.com/tripupapp/tripup-server

go 1.15

Expand Down
8 changes: 4 additions & 4 deletions server.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tools/filesize_calculator.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 54339d5

Please sign in to comment.