-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from po3rin/reindex
supports reindex
- Loading branch information
Showing
14 changed files
with
479 additions
and
37 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 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 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 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 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 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,36 +1,43 @@ | ||
module github.com/po3rin/eskeeper | ||
|
||
go 1.15 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/Cside/jsondiff v0.0.0-20180209072652-0e50d980b458 | ||
github.com/Masterminds/semver/v3 v3.1.1 // indirect | ||
github.com/cenkalti/backoff v2.2.1+incompatible // indirect | ||
github.com/cenkalti/backoff/v3 v3.2.2 // indirect | ||
github.com/containerd/continuity v0.0.0-20200928162600-f2cc35102c2a // indirect | ||
github.com/creack/pty v1.1.9 // indirect | ||
github.com/elastic/go-elasticsearch v0.0.0 | ||
github.com/elastic/go-elasticsearch/v7 v7.9.0 | ||
github.com/elastic/go-elasticsearch/v7 v7.11.0 | ||
github.com/evanphx/json-patch v4.9.0+incompatible // indirect | ||
github.com/fatih/color v1.9.0 // indirect | ||
github.com/goccy/go-yaml v1.8.2 | ||
github.com/gofrs/uuid v3.3.0+incompatible | ||
github.com/google/go-cmp v0.4.0 // indirect | ||
github.com/itchyny/gojq v0.11.1 | ||
github.com/itchyny/timefmt-go v0.1.1 // indirect | ||
github.com/fatih/color v1.10.0 // indirect | ||
github.com/goccy/go-yaml v1.8.9 | ||
github.com/gofrs/uuid v4.0.0+incompatible | ||
github.com/hokaccha/go-prettyjson v0.0.0-20190818114111-108c894c2c0e // indirect | ||
github.com/itchyny/astgen-go v0.0.0-20200815150004-12a293722290 // indirect | ||
github.com/itchyny/gojq v0.12.2 | ||
github.com/kataras/pio v0.0.10 | ||
github.com/mattn/go-colorable v0.1.8 // indirect | ||
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect | ||
github.com/oligot/go-mod-upgrade v0.4.1 // indirect | ||
github.com/ory/dockertest v3.3.5+incompatible | ||
github.com/ory/dockertest/v3 v3.6.0 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/po3rin/bmfzf v0.0.1 | ||
github.com/po3rin/bmfzf v0.0.2 | ||
github.com/sergi/go-diff v1.1.0 // indirect | ||
github.com/sirupsen/logrus v1.7.0 // indirect | ||
github.com/spf13/cobra v1.0.0 | ||
github.com/spf13/pflag v1.0.3 | ||
github.com/spf13/viper v1.7.0 | ||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 | ||
golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6 // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/spf13/viper v1.7.1 | ||
github.com/stretchr/testify v1.6.1 // indirect | ||
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 | ||
golang.org/x/sys v0.0.0-20210313110737-8e9fff1a3a18 // indirect | ||
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect | ||
golang.org/x/text v0.3.5 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/yaml.v2 v2.2.7 | ||
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect | ||
gopkg.in/go-playground/validator.v9 v9.30.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) |
Oops, something went wrong.