Add basic skeleton of kpod executable
Signed-off-by: Matthew Heon <mheon@redhat.com>
This commit is contained in:
parent
be32aa566e
commit
f512f211d0
4 changed files with 45 additions and 1 deletions
16
cmd/kpod/launch.go
Normal file
16
cmd/kpod/launch.go
Normal file
|
@ -0,0 +1,16 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
// TODO implement
|
||||
var launchCommand = cli.Command{
|
||||
Name: "launch",
|
||||
Usage: "launch a pod",
|
||||
Action: func(context *cli.Context) error {
|
||||
return fmt.Errorf("this functionality is not yet implemented")
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue