upod/internal/cmd/root.go
2024-03-20 19:14:31 -07:00

17 lines
201 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var (
rootCommand = &cobra.Command{
Use: "upod",
Short: "upod is a simple container runtime implementation",
}
)
func initRootCommand() {
}