Commits on Source (3)
-
Volker Schukai authored
-
Volker Schukai authored
-
Volker Schukai authored
Showing
- CHANGELOG.md 7 additions, 0 deletionsCHANGELOG.md
- command.go 1 addition, 1 deletioncommand.go
- go.mod 4 additions, 2 deletionsgo.mod
- go.sum 2 additions, 0 deletionsgo.sum
- issue-4_test.go 30 additions, 0 deletionsissue-4_test.go
- release.json 1 addition, 1 deletionrelease.json
- setting_test.go 1 addition, 1 deletionsetting_test.go
... | ... | @@ -2,12 +2,14 @@ module gitlab.schukai.com/oss/libraries/go/application/xflags |
go 1.19 | ||
require github.com/stretchr/testify v1.8.0 | ||
require ( | ||
github.com/stretchr/testify v1.8.0 | ||
gitlab.schukai.com/oss/libraries/go/utilities/pathfinder v0.3.1 | ||
) | ||
require ( | ||
github.com/agnivade/levenshtein v1.1.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
gitlab.schukai.com/oss/libraries/go/utilities/pathfinder v0.3.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
... | ... | @@ -14,6 +14,8 @@ github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PK |
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= | ||
gitlab.schukai.com/oss/libraries/go/utilities/pathfinder v0.3.0 h1:mSxk2q/npskmHMmw1oF4moccjGav5dL6qmff2njUV7A= | ||
gitlab.schukai.com/oss/libraries/go/utilities/pathfinder v0.3.0/go.mod h1:UvdD4NAf3gLKYafabJD7e9ZCOetzM9JZ9y4GkZukPVU= | ||
gitlab.schukai.com/oss/libraries/go/utilities/pathfinder v0.3.1 h1:oyElaqEiyr2XgaE1CYwD8LoeHsuR/vQD/p6k3jYbJFs= | ||
gitlab.schukai.com/oss/libraries/go/utilities/pathfinder v0.3.1/go.mod h1:UvdD4NAf3gLKYafabJD7e9ZCOetzM9JZ9y4GkZukPVU= | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= | ||
... | ... |
issue-4_test.go
0 → 100644