forked from nyaruka/rp-indexer
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refactor' into flow_history
- Loading branch information
Showing
15 changed files
with
1,016 additions
and
944 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,32 @@ | ||
module github.com/nyaruka/rp-indexer | ||
|
||
require ( | ||
github.com/certifi/gocertifi v0.0.0-20180118203423-deb3ae2ef261 // indirect | ||
github.com/evalphobia/logrus_sentry v0.4.5 | ||
github.com/getsentry/raven-go v0.0.0-20180405121644-d1470f50d3a3 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2 | ||
github.com/lib/pq v1.10.4 | ||
github.com/nyaruka/ezconf v0.2.1 | ||
github.com/nyaruka/gocommon v1.3.0 | ||
github.com/nyaruka/gocommon v1.17.1 | ||
github.com/olivere/elastic/v7 v7.0.22 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/stretchr/testify v1.5.1 | ||
github.com/stretchr/testify v1.7.0 | ||
) | ||
|
||
require ( | ||
github.com/certifi/gocertifi v0.0.0-20180118203423-deb3ae2ef261 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fatih/structs v1.0.0 // indirect | ||
github.com/getsentry/raven-go v0.0.0-20180405121644-d1470f50d3a3 // indirect | ||
github.com/go-chi/chi v4.1.2+incompatible // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/naoina/go-stringutil v0.1.0 // indirect | ||
github.com/naoina/toml v0.1.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/shopspring/decimal v1.2.0 // indirect | ||
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect | ||
golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) | ||
|
||
go 1.16 | ||
go 1.17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.