Update github.com/kcotugno to git.kevincotugno.com/kcotugno

This commit is contained in:
Kevin Cotugno 2018-09-05 17:11:26 -07:00
parent 2d128383ed
commit ac9b5ad7c1
20 changed files with 34 additions and 34 deletions

View File

@ -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)

View File

@ -9,7 +9,7 @@ import (
"strconv"
"time"
"github.com/kcotugno/tacitus/postgres"
"git.kevincotugno.com/kcotugno/tacitus/postgres"
)
func main() {

View File

@ -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"

View File

@ -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"
)

View File

@ -1,7 +1,7 @@
package gdax
import (
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
"errors"
"sync"

View File

@ -1,7 +1,7 @@
package gdax
import (
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
"encoding/json"
"net/http"

View File

@ -2,7 +2,7 @@ package websocket
import (
"github.com/gorilla/websocket"
"github.com/kcotugno/tacitus/gdax"
"git.kevincotugno.com/kcotugno/tacitus/gdax"
"sync"
"time"

View File

@ -1,7 +1,7 @@
package http
import (
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
"net/http"
)

View File

@ -4,7 +4,7 @@ import (
"net"
"net/http"
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
)
const DefaultAddr = ":8080"

View File

@ -6,7 +6,7 @@ import (
"strconv"
"strings"
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
)
type TradeHandler struct {

View File

@ -1,7 +1,7 @@
package ops
import (
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
"sort"
"time"

View File

@ -1,7 +1,7 @@
package ops
import (
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
"github.com/shopspring/decimal"
"sync"

View File

@ -1,7 +1,7 @@
package ops
import (
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
)
type Registrar struct {

View File

@ -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"

View File

@ -1,7 +1,7 @@
package postgres
import (
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
"github.com/shopspring/decimal"
"database/sql"

View File

@ -1,7 +1,7 @@
package postgres
import (
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
"strings"
"time"

View File

@ -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}} ` +

View File

@ -1,7 +1,7 @@
package postgres
import (
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
)
const (

View File

@ -1,7 +1,7 @@
package postgres
import (
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
"database/sql"
"errors"

View File

@ -1,7 +1,7 @@
package postgres
import (
"github.com/kcotugno/tacitus"
"git.kevincotugno.com/kcotugno/tacitus"
"database/sql"
"strings"