upod/internal/cmd/root.go

17 lines
201 B
Go
Raw Normal View History

2024-03-20 19:14:31 -07:00
package cmd
import (
"github.com/spf13/cobra"
)
var (
rootCommand = &cobra.Command{
Use: "upod",
Short: "upod is a simple container runtime implementation",
}
)
func initRootCommand() {
}