Files
portmaster/cmds/updatemgr/main.go
2024-10-10 08:58:02 +02:00

21 lines
250 B
Go

package main
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "updatemgr",
Short: "Manage update artifacts.",
}
func main() {
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}