-
- Downloads
Merge pull request #1480 from srenatus/sr/deduplicate-filter-groups
connectors: refactor filter code into a helper package
Showing
- connector/bitbucketcloud/bitbucketcloud.go 3 additions, 17 deletionsconnector/bitbucketcloud/bitbucketcloud.go
- connector/github/github.go 2 additions, 17 deletionsconnector/github/github.go
- connector/gitlab/gitlab.go 2 additions, 16 deletionsconnector/gitlab/gitlab.go
- connector/microsoft/microsoft.go 4 additions, 16 deletionsconnector/microsoft/microsoft.go
- go.mod 1 addition, 1 deletiongo.mod
- pkg/groups/groups.go 18 additions, 0 deletionspkg/groups/groups.go
- pkg/groups/groups_test.go 26 additions, 0 deletionspkg/groups/groups_test.go
- vendor/github.com/davecgh/go-spew/LICENSE 15 additions, 0 deletionsvendor/github.com/davecgh/go-spew/LICENSE
- vendor/github.com/davecgh/go-spew/spew/bypass.go 145 additions, 0 deletionsvendor/github.com/davecgh/go-spew/spew/bypass.go
- vendor/github.com/davecgh/go-spew/spew/bypasssafe.go 38 additions, 0 deletionsvendor/github.com/davecgh/go-spew/spew/bypasssafe.go
- vendor/github.com/davecgh/go-spew/spew/common.go 341 additions, 0 deletionsvendor/github.com/davecgh/go-spew/spew/common.go
- vendor/github.com/davecgh/go-spew/spew/config.go 306 additions, 0 deletionsvendor/github.com/davecgh/go-spew/spew/config.go
- vendor/github.com/davecgh/go-spew/spew/doc.go 211 additions, 0 deletionsvendor/github.com/davecgh/go-spew/spew/doc.go
- vendor/github.com/davecgh/go-spew/spew/dump.go 509 additions, 0 deletionsvendor/github.com/davecgh/go-spew/spew/dump.go
- vendor/github.com/davecgh/go-spew/spew/format.go 419 additions, 0 deletionsvendor/github.com/davecgh/go-spew/spew/format.go
- vendor/github.com/davecgh/go-spew/spew/spew.go 148 additions, 0 deletionsvendor/github.com/davecgh/go-spew/spew/spew.go
- vendor/github.com/pmezard/go-difflib/LICENSE 27 additions, 0 deletionsvendor/github.com/pmezard/go-difflib/LICENSE
- vendor/github.com/pmezard/go-difflib/difflib/difflib.go 772 additions, 0 deletionsvendor/github.com/pmezard/go-difflib/difflib/difflib.go
- vendor/github.com/stretchr/testify/LICENSE 22 additions, 0 deletionsvendor/github.com/stretchr/testify/LICENSE
- vendor/github.com/stretchr/testify/assert/assertion_format.go 484 additions, 0 deletions...or/github.com/stretchr/testify/assert/assertion_format.go
... | @@ -42,7 +42,7 @@ require ( | ... | @@ -42,7 +42,7 @@ require ( |
github.com/sirupsen/logrus v0.0.0-20170713114250-a3f95b5c4235 | github.com/sirupsen/logrus v0.0.0-20170713114250-a3f95b5c4235 | ||
github.com/spf13/cobra v0.0.0-20160615143614-bc81c21bd0d8 | github.com/spf13/cobra v0.0.0-20160615143614-bc81c21bd0d8 | ||
github.com/spf13/pflag v0.0.0-20160610190902-367864438f1b // indirect | github.com/spf13/pflag v0.0.0-20160610190902-367864438f1b // indirect | ||
github.com/stretchr/testify v1.2.2 // indirect | github.com/stretchr/testify v1.2.2 | ||
github.com/ugorji/go/codec v0.0.0-20181127175209-856da096dbdf // indirect | github.com/ugorji/go/codec v0.0.0-20181127175209-856da096dbdf // indirect | ||
github.com/xiang90/probing v0.0.0-20160813154853-07dd2e8dfe18 // indirect | github.com/xiang90/probing v0.0.0-20160813154853-07dd2e8dfe18 // indirect | ||
golang.org/x/crypto v0.0.0-20160711182412-2c99acdd1e9b | golang.org/x/crypto v0.0.0-20160711182412-2c99acdd1e9b | ||
... | ... |
pkg/groups/groups.go
0 → 100644
pkg/groups/groups_test.go
0 → 100644
vendor/github.com/davecgh/go-spew/LICENSE
0 → 100644
vendor/github.com/pmezard/go-difflib/LICENSE
0 → 100644
This diff is collapsed.
vendor/github.com/stretchr/testify/LICENSE
0 → 100644
Please register or sign in to comment