-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* (chore): update go mod deps * (fix): unblock snapcraft build * (fix): fix workspace env var name * (chore): add badges * (chore): fix golint warnings * (release): v0.6.0
- Loading branch information
1 parent
c38bb80
commit b8f872f
Showing
9 changed files
with
199 additions
and
62 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
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,22 +1,24 @@ | ||
module github.com/lucassabreu/clockify-cli | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/mattn/go-isatty v0.0.4 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/mattn/go-colorable v0.1.4 // indirect | ||
github.com/mattn/go-isatty v0.0.11 // indirect | ||
github.com/mattn/go-runewidth v0.0.4 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/olekukonko/tablewriter v0.0.1 | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/spf13/viper v1.3.1 | ||
github.com/stretchr/testify v1.3.0 // indirect | ||
golang.org/x/crypto v0.0.0-20190422183909-d864b10871cd | ||
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb // indirect | ||
github.com/smartystreets/assertions v1.0.0 // indirect | ||
github.com/spf13/cobra v1.0.0 | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.6.1 | ||
github.com/stretchr/testify v1.6.1 // indirect | ||
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 | ||
golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980 // indirect | ||
golang.org/x/text v0.3.2 // indirect | ||
gopkg.in/AlecAivazis/survey.v1 v1.8.2 | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
gopkg.in/yaml.v2 v2.2.2 | ||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect | ||
gopkg.in/yaml.v2 v2.3.0 | ||
) | ||
|
||
go 1.13 |
Oops, something went wrong.