From 7c13dfb963afcc9535bca04bc101418dad1b9528 Mon Sep 17 00:00:00 2001 From: Kevin Cotugno Date: Sun, 10 Sep 2017 13:09:27 -0700 Subject: [PATCH] Move packages to github domain --- cmd/interval/main.go | 2 +- cmd/webapp/main.go | 6 +++--- http/trade_handler.go | 2 +- postgres/client.go | 2 +- postgres/trade_service.go | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cmd/interval/main.go b/cmd/interval/main.go index 44585c3..78e5891 100644 --- a/cmd/interval/main.go +++ b/cmd/interval/main.go @@ -9,7 +9,7 @@ import ( "strconv" "time" - "tacitus/postgres" + "github.com/kcotugno/tacitus/postgres" ) func main() { diff --git a/cmd/webapp/main.go b/cmd/webapp/main.go index 47e3048..14e9b94 100644 --- a/cmd/webapp/main.go +++ b/cmd/webapp/main.go @@ -2,9 +2,9 @@ package main import ( "log" - "tacitus/http" - "tacitus/postgres" - "tacitus/osutil" + "github.com/kcotugno/tacitus/http" + "github.com/kcotugno/tacitus/postgres" + "github.com/kcotugno/tacitus/osutil" ) func main() { diff --git a/http/trade_handler.go b/http/trade_handler.go index 3844f9b..d14691f 100644 --- a/http/trade_handler.go +++ b/http/trade_handler.go @@ -5,7 +5,7 @@ import ( "net/url" "strconv" "strings" - "tacitus" + "github.com/kcotugno/tacitus" ) type TradeHandler struct { diff --git a/postgres/client.go b/postgres/client.go index 903bcba..2e24030 100644 --- a/postgres/client.go +++ b/postgres/client.go @@ -7,7 +7,7 @@ import ( "database/sql" "text/template" - "tacitus" + "github.com/kcotugno/tacitus" ) const connStr = `user={{.User}} dbname={{.Name}} sslmode={{.SslMode}}` diff --git a/postgres/trade_service.go b/postgres/trade_service.go index a6b8810..ac73b2d 100644 --- a/postgres/trade_service.go +++ b/postgres/trade_service.go @@ -4,7 +4,7 @@ import ( "database/sql" "time" - "tacitus" + "github.com/kcotugno/tacitus" ) const (