Skip to content

Commit 817e741

Browse files
committedAug 12, 2020
modules: add a secondary go.mod to segregate CLI dependencies
1 parent 5cdf8e2 commit 817e741

File tree

4 files changed

+322
-300
lines changed

4 files changed

+322
-300
lines changed
 

‎cobra/go.mod

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module github.com/spf13/cobra/cobra
2+
3+
go 1.12
4+
5+
require (
6+
github.com/mitchellh/go-homedir v1.1.0
7+
github.com/spf13/cobra v0.0.0
8+
github.com/spf13/viper v1.7.0
9+
)
10+
11+
replace github.com/spf13/cobra => ../

0 commit comments

Comments
 (0)