-
- Downloads
Added basic Add command
Showing
- commands/add.go 312 additions, 12 deletionscommands/add.go
- commands/types.go 14 additions, 0 deletionscommands/types.go
- go.mod 1 addition, 0 deletionsgo.mod
- go.sum 3 additions, 0 deletionsgo.sum
- main.go 10 additions, 6 deletionsmain.go
- templates/datasmith.yaml.tmpl 0 additions, 2 deletionstemplates/datasmith.yaml.tmpl
- utils/utils.go 27 additions, 1 deletionutils/utils.go
commands/types.go
0 → 100644
... | @@ -6,4 +6,5 @@ require ( | ... | @@ -6,4 +6,5 @@ require ( |
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect | github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect | ||
github.com/manifoldco/promptui v0.9.0 // indirect | github.com/manifoldco/promptui v0.9.0 // indirect | ||
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect | golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 | |||
) | ) |
... | @@ -7,3 +7,6 @@ github.com/manifoldco/promptui v0.9.0/go.mod h1:ka04sppxSGFAtxX0qhlYQjISsg9mR4GW | ... | @@ -7,3 +7,6 @@ github.com/manifoldco/promptui v0.9.0/go.mod h1:ka04sppxSGFAtxX0qhlYQjISsg9mR4GW |
golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= | golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= | ||
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 h1:y/woIyUBFbpQGKS0u1aHF/40WUDnek3fPOyD08H5Vng= | golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 h1:y/woIyUBFbpQGKS0u1aHF/40WUDnek3fPOyD08H5Vng= | ||
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | |||
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= | |||
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= |
Please register or sign in to comment