14 lines
201 B
Go
14 lines
201 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
func Root() *cli.Command {
|
||
|
return &cli.Command{
|
||
|
Name: "api",
|
||
|
Usage: "API related commands",
|
||
|
Subcommands: []*cli.Command{},
|
||
|
}
|
||
|
}
|