feat: short flags for run command

This commit is contained in:
decentral1se 2022-03-12 15:42:29 +01:00
parent 3797292b20
commit 2555096510
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 2 additions and 2 deletions

View File

@ -19,14 +19,14 @@ import (
var user string
var userFlag = &cli.StringFlag{
Name: "user",
Name: "user, u",
Value: "",
Destination: &user,
}
var noTTY bool
var noTTYFlag = &cli.BoolFlag{
Name: "no-tty",
Name: "no-tty, t",
Destination: &noTTY,
}