mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-22 07:26:50 +00:00
* * Adds script link to GCT logger package * Adds ability to save data as csv via script * addr nits * go mod tidy * add glorious suggestion * rm unused function * fix linter issues * clean up some issues * Add in configuration fields to object for reflection to the csv file * RM line :D * address nits * update to check for target already being set and add more test coverage * force usage of .csv file extention && append date to client filename as to not overwrite file if collision occurs * fix whoopsie * linter issues * purge getter methods * Added glorious suggestion * go mod tidy after merge * niterinos
36 lines
1.4 KiB
Modula-2
36 lines
1.4 KiB
Modula-2
module github.com/thrasher-corp/gocryptotrader
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/d5/tengo/v2 v2.3.0
|
|
github.com/gofrs/uuid v3.3.0+incompatible
|
|
github.com/golang/protobuf v1.4.1
|
|
github.com/google/go-querystring v1.0.0
|
|
github.com/gorilla/mux v1.7.4
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0
|
|
github.com/grpc-ecosystem/grpc-gateway v1.14.5
|
|
github.com/kat-co/vala v0.0.0-20170210184112-42e1d8b61f12
|
|
github.com/lib/pq v1.5.2
|
|
github.com/mattn/go-sqlite3 v1.13.0
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/pquerna/otp v1.2.0
|
|
github.com/spf13/viper v1.7.0
|
|
github.com/stretchr/testify v1.5.1 // indirect
|
|
github.com/thrasher-corp/gct-ta v0.0.0-20200423101437-dc6b098dc762
|
|
github.com/thrasher-corp/goose v2.7.0-rc4.0.20191002032028-0f2c2a27abdb+incompatible
|
|
github.com/thrasher-corp/sqlboiler v1.0.1-0.20191001234224-71e17f37a85e
|
|
github.com/toorop/go-pusher v0.0.0-20180521062818-4521e2eb39fb
|
|
github.com/urfave/cli v1.22.4
|
|
github.com/volatiletech/null v8.0.0+incompatible
|
|
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
|
|
golang.org/x/net v0.0.0-20191002035440-2ec189313ef0
|
|
golang.org/x/sys v0.0.0-20191003212358-c178f38b412c // indirect
|
|
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
|
|
google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a
|
|
google.golang.org/grpc v1.29.1
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/yaml.v2 v2.2.7 // indirect
|
|
)
|