github.com/octohelm/cuemod@v0.9.4/cmd/cuem/main.go (about) 1 package main 2 3 import ( 4 "context" 5 6 "github.com/octohelm/cuemod/cmd/cuem/cmd" 7 ) 8 9 func main() { 10 if err := cmd.Run(context.Background()); err != nil { 11 panic(err) 12 } 13 }