trunkless/cmd/root.go
2024-04-21 21:46:16 -07:00

20 lines
233 B
Go

package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "trunkless",
}
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Fprintf(os.Stderr, err.Error())
os.Exit(1)
}
}