-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
22 lines (18 loc) · 631 Bytes
/
go.mod
File metadata and controls
22 lines (18 loc) · 631 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module gotake
go 1.16
require (
// Library for color ouput
// https://github.com/fatih/color
github.com/fatih/color v1.15.0
github.com/fzipp/gocyclo v0.3.1 // indirect
// Library for pretty printing of tables and file information
// https://github.com/jedib0t/go-pretty
github.com/jedib0t/go-pretty/v6 v6.4.9
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
// Library for core functions and CLI structure
// https://github.com/spf13/cobra
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.7.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)