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

23 lines
418 B
Go

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