Implementation of Mizu view command

This commit is contained in:
Igor Gov
2021-06-06 17:00:23 +03:00
parent 1bf5bf0b31
commit 88a5befd4b
4 changed files with 242 additions and 34 deletions

View File

@@ -1,7 +1,6 @@
package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
@@ -9,7 +8,7 @@ var viewCmd = &cobra.Command{
Use: "view",
Short: "Open GUI in browser",
RunE: func(cmd *cobra.Command, args []string) error {
fmt.Println("Not implemented")
runMizuView()
return nil
},
}