Update github.com/kcotugno
to git.kevincotugno.com/kcotugno
This commit is contained in:
parent
2d128383ed
commit
ac9b5ad7c1
14
Makefile
14
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)
|
||||
|
@ -9,7 +9,7 @@ import (
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
"github.com/kcotugno/tacitus/postgres"
|
||||
"git.kevincotugno.com/kcotugno/tacitus/postgres"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
)
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
package gdax
|
||||
|
||||
import (
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
|
||||
"errors"
|
||||
"sync"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package gdax
|
||||
|
||||
import (
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
|
@ -2,7 +2,7 @@ package websocket
|
||||
|
||||
import (
|
||||
"github.com/gorilla/websocket"
|
||||
"github.com/kcotugno/tacitus/gdax"
|
||||
"git.kevincotugno.com/kcotugno/tacitus/gdax"
|
||||
|
||||
"sync"
|
||||
"time"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package http
|
||||
|
||||
import (
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
|
||||
"net/http"
|
||||
)
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"net"
|
||||
"net/http"
|
||||
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
)
|
||||
|
||||
const DefaultAddr = ":8080"
|
||||
|
@ -6,7 +6,7 @@ import (
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
)
|
||||
|
||||
type TradeHandler struct {
|
||||
|
@ -1,7 +1,7 @@
|
||||
package ops
|
||||
|
||||
import (
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
|
||||
"sort"
|
||||
"time"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package ops
|
||||
|
||||
import (
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"sync"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package ops
|
||||
|
||||
import (
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
)
|
||||
|
||||
type Registrar struct {
|
||||
|
@ -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"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package postgres
|
||||
|
||||
import (
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"database/sql"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package postgres
|
||||
|
||||
import (
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
|
||||
"strings"
|
||||
"time"
|
||||
|
@ -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}} ` +
|
||||
|
@ -1,7 +1,7 @@
|
||||
package postgres
|
||||
|
||||
import (
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -1,7 +1,7 @@
|
||||
package postgres
|
||||
|
||||
import (
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
|
||||
"database/sql"
|
||||
"errors"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package postgres
|
||||
|
||||
import (
|
||||
"github.com/kcotugno/tacitus"
|
||||
"git.kevincotugno.com/kcotugno/tacitus"
|
||||
|
||||
"database/sql"
|
||||
"strings"
|
||||
|
Reference in New Issue
Block a user