package main import ( "fmt" "os" "github.com/tnypxl/rollup/cmd" ) func main() { if err := cmd.Execute(); err != nil { fmt.Println(err) os.Exit(1) } }