Commits on Source (9)
-
Christophe de Vienne authoreded4f5b9131ba
-
Christophe de Vienne authored1a687f2d452d
-
Christophe de Vienne authoredcbb304751ba8
-
Christophe de Vienne authored9f3fbd52bc11
-
Florent Aide authoredf6841cca7df5
-
Florent Aide authored71b3c94262a3
-
Axel Prel authoredb968a67ec094
-
Christophe de Vienne authored26c2077341bc
-
Christophe de Vienne authored868dd61cd410
Showing
- .gitlab-ci.yml 1 addition, 1 deletion.gitlab-ci.yml
- .golangci.yml 1 addition, 5 deletions.golangci.yml
- Makefile 1 addition, 1 deletionMakefile
- database/array_contains.go 1 addition, 0 deletionsdatabase/array_contains.go
- database/sql_helper.go 38 additions, 2 deletionsdatabase/sql_helper.go
- database/test.go 110 additions, 44 deletionsdatabase/test.go
- go.mod 31 additions, 2 deletionsgo.mod
- go.sum 38 additions, 28 deletionsgo.sum
- log-console-writer_test.go 2 additions, 2 deletionslog-console-writer_test.go
- logging.go 9 additions, 3 deletionslogging.go
- server.go 2 additions, 3 deletionsserver.go
module orus.io/orus-io/go-orusapi | ||
go 1.14 | ||
go 1.19 | ||
require ( | ||
github.com/Masterminds/squirrel v1.4.0 | ||
... | ... | @@ -9,6 +9,7 @@ |
github.com/go-openapi/runtime v0.19.21 | ||
github.com/go-openapi/swag v0.19.9 | ||
github.com/golang-migrate/migrate/v4 v4.12.2 | ||
github.com/jackc/pgtype v0.0.0-20190828014616-a8802b16cc59 | ||
github.com/jmoiron/sqlx v1.2.1-0.20200615141059-0794cb1f47ee | ||
github.com/json-iterator/go v1.1.10 | ||
github.com/justinas/alice v1.2.0 | ||
... | ... | @@ -17,5 +18,4 @@ |
github.com/prometheus/client_golang v1.8.0 | ||
github.com/rs/zerolog v1.19.0 | ||
github.com/stretchr/testify v1.6.1 | ||
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a | ||
golang.org/x/net v0.0.0-20200707034311-ab3426394381 | ||
... | ... | @@ -21,2 +21,3 @@ |
golang.org/x/net v0.0.0-20200707034311-ab3426394381 | ||
golang.org/x/term v0.10.0 | ||
) | ||
... | ... | @@ -22,1 +23,29 @@ |
) | ||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.0 // indirect | ||
github.com/jackc/pgio v1.0.0 // indirect | ||
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect | ||
github.com/lib/pq v1.3.0 // indirect | ||
github.com/mailru/easyjson v0.7.1 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.14.0 // indirect | ||
github.com/prometheus/procfs v0.2.0 // indirect | ||
github.com/rs/xid v1.2.1 // indirect | ||
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect | ||
golang.org/x/sys v0.10.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect | ||
) |
This diff is collapsed.