-
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.
Replace fmt with log. Handle errors better.
- Loading branch information
Eugene Dementiev
committed
May 9, 2019
1 parent
7dfe2d9
commit 10b2b59
Showing
6 changed files
with
88 additions
and
52 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,23 @@ | ||
module github.com/springload/lp-aws-saml | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/antchfx/xmlquery v0.0.0-20180925013719-07935b1c0f2e | ||
github.com/antchfx/xpath v0.0.0-20180922041825-3de91f3991a1 | ||
github.com/antchfx/xpath v0.0.0-20180922041825-3de91f3991a1 // indirect | ||
github.com/aws/aws-sdk-go v1.15.57 | ||
github.com/fsnotify/fsnotify v1.4.7 | ||
github.com/go-ini/ini v1.39.0 | ||
github.com/hashicorp/hcl v1.0.0 | ||
github.com/inconshreveable/mousetrap v1.0.0 | ||
github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8 | ||
github.com/juju/go4 v0.0.0-20160222163258-40d72ab9641a | ||
github.com/magiconair/properties v1.8.0 | ||
github.com/mitchellh/mapstructure v1.1.2 | ||
github.com/pelletier/go-toml v1.2.0 | ||
github.com/spf13/afero v1.1.2 | ||
github.com/spf13/cast v1.2.0 | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/juju/go4 v0.0.0-20160222163258-40d72ab9641a // indirect | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a // indirect | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/spf13/jwalterweatherman v1.0.0 | ||
github.com/spf13/pflag v1.0.3 | ||
github.com/spf13/pflag v1.0.3 // indirect | ||
github.com/spf13/viper v1.2.1 | ||
github.com/stretchr/testify v1.3.0 // indirect | ||
github.com/vinhjaxt/persistent-cookiejar v0.0.0-20180709060329-9ac0896f6195 | ||
golang.org/x/crypto v0.0.0-20181015023909-0c41d7ab0a0e | ||
golang.org/x/net v0.0.0-20181017193950-04a2e542c03f | ||
golang.org/x/sys v0.0.0-20181011152604-fa43e7bc11ba | ||
golang.org/x/text v0.3.0 | ||
gopkg.in/errgo.v1 v1.0.0 | ||
gopkg.in/retry.v1 v1.0.2 | ||
gopkg.in/yaml.v2 v2.2.1 | ||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 | ||
golang.org/x/net v0.0.0-20190311183353-d8887717615a | ||
gopkg.in/errgo.v1 v1.0.1 // indirect | ||
gopkg.in/ini.v1 v1.42.0 // indirect | ||
gopkg.in/retry.v1 v1.0.2 // indirect | ||
) |
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