Files
pushbits-cli/cmd/application/create.go
2021-01-14 17:42:30 +01:00

23 lines
434 B
Go

package application
import (
"log"
"github.com/pushbits/cli/cmd/settings"
)
type createCommand struct {
Arguments struct {
Name string `positional-arg-name:"name" description:"The name of the application"`
} `required:"true" positional-args:"true"`
}
func (c *createCommand) Execute(args []string) error {
settings.Runner = c
return nil
}
func (c *createCommand) Run(s settings.Settings) {
log.Printf("createCommand")
}