This commit is contained in:
Mikaël Cluseau
2020-11-14 22:43:34 +01:00
parent aa65648854
commit 46bfd58d8e
5 changed files with 227 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import (
"github.com/spf13/cobra"
cmddynlay "novit.nc/direktil/inits/pkg/cmd/dynlay"
cmdinit "novit.nc/direktil/inits/pkg/cmd/init"
)
@ -12,6 +13,7 @@ func main() {
root := &cobra.Command{}
root.AddCommand(cmdinit.Command())
root.AddCommand(cmddynlay.Command())
if err := root.Execute(); err != nil {
log.Fatal("error: ", err)