1 package main 2 3 import ( 4 "os" 5 6 "github.com/linkerd/linkerd2/viz/cmd" 7 ) 8 9 func main() { 10 if err := cmd.NewCmdViz().Execute(); err != nil { 11 os.Exit(1) 12 } 13 } 14
View as plain text