forked from toolshed/abra
refactor: break up cli pkg into nice small chunks
This commit is contained in:
15
cli/app/run.go
Normal file
15
cli/app/run.go
Normal file
@ -0,0 +1,15 @@
|
||||
package app
|
||||
|
||||
import (
|
||||
"coopcloud.tech/abra/cli/internal"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
var appRunCommand = &cli.Command{
|
||||
Name: "run",
|
||||
Flags: []cli.Flag{
|
||||
internal.NoTTYFlag,
|
||||
internal.UserFlag,
|
||||
},
|
||||
ArgsUsage: "<service> <args>...",
|
||||
}
|
Reference in New Issue
Block a user