chore: wiring startup with the flow [IN PROGRESS]

This commit is contained in:
braginini
2021-04-14 17:08:35 +02:00
parent 675358ce5c
commit cb60efef8d
6 changed files with 156 additions and 81 deletions

20
cmd/root.go Normal file
View File

@@ -0,0 +1,20 @@
package cmd
import "github.com/spf13/cobra"
var (
rootCmd = &cobra.Command{
Use: "wiretrustee",
Short: "",
Long: "",
}
)
// Execute executes the root command.
func Execute() error {
return rootCmd.Execute()
}
func init() {
rootCmd.AddCommand(upCmd)
}