diff --git a/Makefile b/Makefile index f8ceedc..64f0df3 100644 --- a/Makefile +++ b/Makefile @@ -23,13 +23,13 @@ watcher: $(WATCHER) webapp: $(WEBAPP) get: - go get $(GETFLAGS) github.com/kcotugno/tacitus - go get $(GETFLAGS) github.com/kcotugno/tacitus/cmd/interval - go get $(GETFLAGS) github.com/kcotugno/tacitus/cmd/watcher - go get $(GETFLAGS) github.com/kcotugno/tacitus/cmd/webapp - go get $(GETFLAGS) github.com/kcotugno/tacitus/gdax - go get $(GETFLAGS) github.com/kcotugno/tacitus/gdax/websocket - go get $(GETFLAGS) github.com/kcotugno/tacitus/postgres + go get $(GETFLAGS) git.kevincotugno.com/kcotugno/tacitus + go get $(GETFLAGS) git.kevincotugno.com/kcotugno/tacitus/cmd/interval + go get $(GETFLAGS) git.kevincotugno.com/kcotugno/tacitus/cmd/watcher + go get $(GETFLAGS) git.kevincotugno.com/kcotugno/tacitus/cmd/webapp + go get $(GETFLAGS) git.kevincotugno.com/kcotugno/tacitus/gdax + go get $(GETFLAGS) git.kevincotugno.com/kcotugno/tacitus/gdax/websocket + go get $(GETFLAGS) git.kevincotugno.com/kcotugno/tacitus/postgres fmt: $(TACITUS_FILES) $(OSUTIL_FILES) $(POSTGRES_FILES) $(OPS_FILES) \ $(GDAX_FILES) $(GDAX_WEBSOCKET_FILES) $(HTTP_FILES) diff --git a/cmd/interval/main.go b/cmd/interval/main.go index 78e5891..5a2af11 100644 --- a/cmd/interval/main.go +++ b/cmd/interval/main.go @@ -9,7 +9,7 @@ import ( "strconv" "time" - "github.com/kcotugno/tacitus/postgres" + "git.kevincotugno.com/kcotugno/tacitus/postgres" ) func main() { diff --git a/cmd/watcher/main.go b/cmd/watcher/main.go index 5c042c7..6ce707c 100644 --- a/cmd/watcher/main.go +++ b/cmd/watcher/main.go @@ -1,12 +1,12 @@ package main import ( - "github.com/kcotugno/tacitus" - "github.com/kcotugno/tacitus/gdax" - "github.com/kcotugno/tacitus/gdax/websocket" - "github.com/kcotugno/tacitus/ops" - "github.com/kcotugno/tacitus/osutil" - "github.com/kcotugno/tacitus/postgres" + "git.kevincotugno.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus/gdax" + "git.kevincotugno.com/kcotugno/tacitus/gdax/websocket" + "git.kevincotugno.com/kcotugno/tacitus/ops" + "git.kevincotugno.com/kcotugno/tacitus/osutil" + "git.kevincotugno.com/kcotugno/tacitus/postgres" "flag" "fmt" diff --git a/cmd/webapp/main.go b/cmd/webapp/main.go index 181bfc7..d3d58b2 100644 --- a/cmd/webapp/main.go +++ b/cmd/webapp/main.go @@ -1,9 +1,9 @@ package main import ( - "github.com/kcotugno/tacitus/http" - "github.com/kcotugno/tacitus/osutil" - "github.com/kcotugno/tacitus/postgres" + "git.kevincotugno.com/kcotugno/tacitus/http" + "git.kevincotugno.com/kcotugno/tacitus/osutil" + "git.kevincotugno.com/kcotugno/tacitus/postgres" "log" ) diff --git a/gdax/listener_service.go b/gdax/listener_service.go index 9e39d7f..b89b38b 100644 --- a/gdax/listener_service.go +++ b/gdax/listener_service.go @@ -1,7 +1,7 @@ package gdax import ( - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" "errors" "sync" diff --git a/gdax/public_client.go b/gdax/public_client.go index de0ab45..adb41e0 100644 --- a/gdax/public_client.go +++ b/gdax/public_client.go @@ -1,7 +1,7 @@ package gdax import ( - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" "encoding/json" "net/http" diff --git a/gdax/websocket/client.go b/gdax/websocket/client.go index 2dc0fa7..6020746 100644 --- a/gdax/websocket/client.go +++ b/gdax/websocket/client.go @@ -2,7 +2,7 @@ package websocket import ( "github.com/gorilla/websocket" - "github.com/kcotugno/tacitus/gdax" + "git.kevincotugno.com/kcotugno/tacitus/gdax" "sync" "time" diff --git a/http/mux.go b/http/mux.go index eb367ac..9ffed30 100644 --- a/http/mux.go +++ b/http/mux.go @@ -1,7 +1,7 @@ package http import ( - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" "net/http" ) diff --git a/http/server.go b/http/server.go index ec2790c..a677ffe 100644 --- a/http/server.go +++ b/http/server.go @@ -4,7 +4,7 @@ import ( "net" "net/http" - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" ) const DefaultAddr = ":8080" diff --git a/http/trade_handler.go b/http/trade_handler.go index ffacb2e..146ae97 100644 --- a/http/trade_handler.go +++ b/http/trade_handler.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" ) type TradeHandler struct { diff --git a/ops/aggregation_validator.go b/ops/aggregation_validator.go index ed106d2..10f74e0 100644 --- a/ops/aggregation_validator.go +++ b/ops/aggregation_validator.go @@ -1,7 +1,7 @@ package ops import ( - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" "sort" "time" diff --git a/ops/aggregator.go b/ops/aggregator.go index d94b131..6f60be2 100644 --- a/ops/aggregator.go +++ b/ops/aggregator.go @@ -1,7 +1,7 @@ package ops import ( - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" "github.com/shopspring/decimal" "sync" diff --git a/ops/registrar.go b/ops/registrar.go index 26ce9b9..5287993 100644 --- a/ops/registrar.go +++ b/ops/registrar.go @@ -1,7 +1,7 @@ package ops import ( - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" ) type Registrar struct { diff --git a/ops/validator.go b/ops/validator.go index 8a75906..82cae19 100644 --- a/ops/validator.go +++ b/ops/validator.go @@ -1,8 +1,8 @@ package ops import ( - "github.com/kcotugno/tacitus" - "github.com/kcotugno/tacitus/gdax" + "git.kevincotugno.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus/gdax" "sort" "time" diff --git a/postgres/aggregation_results.go b/postgres/aggregation_results.go index d949302..1f7ec35 100644 --- a/postgres/aggregation_results.go +++ b/postgres/aggregation_results.go @@ -1,7 +1,7 @@ package postgres import ( - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" "github.com/shopspring/decimal" "database/sql" diff --git a/postgres/aggregation_service.go b/postgres/aggregation_service.go index 94f4c0e..6c5d8c1 100644 --- a/postgres/aggregation_service.go +++ b/postgres/aggregation_service.go @@ -1,7 +1,7 @@ package postgres import ( - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" "strings" "time" diff --git a/postgres/client.go b/postgres/client.go index 03f3009..67e4344 100644 --- a/postgres/client.go +++ b/postgres/client.go @@ -7,7 +7,7 @@ import ( "database/sql" "text/template" - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" ) const connStr = `host={{.Host}} dbname={{.Name}} port={{.Port}} user={{.User}} ` + diff --git a/postgres/confirmation_service.go b/postgres/confirmation_service.go index 946c04e..b3d4503 100644 --- a/postgres/confirmation_service.go +++ b/postgres/confirmation_service.go @@ -1,7 +1,7 @@ package postgres import ( - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" ) const ( diff --git a/postgres/trade_result.go b/postgres/trade_result.go index 72f0c00..141d161 100644 --- a/postgres/trade_result.go +++ b/postgres/trade_result.go @@ -1,7 +1,7 @@ package postgres import ( - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" "database/sql" "errors" diff --git a/postgres/trade_service.go b/postgres/trade_service.go index dc68584..b10e4f0 100644 --- a/postgres/trade_service.go +++ b/postgres/trade_service.go @@ -1,7 +1,7 @@ package postgres import ( - "github.com/kcotugno/tacitus" + "git.kevincotugno.com/kcotugno/tacitus" "database/sql" "strings"