mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 04:02:00 -06:00
Just some style changes
This commit is contained in:
parent
668c673750
commit
dafa2f4d70
1 changed files with 10 additions and 4 deletions
|
|
@ -11,9 +11,9 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
loginSessionIDFlag bool
|
|
||||||
|
|
||||||
loginPersistentFlag bool
|
loginPersistentFlag bool
|
||||||
|
|
||||||
|
loginSessionIDFlag bool
|
||||||
)
|
)
|
||||||
|
|
||||||
var loginCmd = &cobra.Command{
|
var loginCmd = &cobra.Command{
|
||||||
|
|
@ -31,9 +31,15 @@ var loginCmd = &cobra.Command{
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
loginCmd.Flags().BoolVar(&loginSessionIDFlag, "session-id", false, "Use a session id to login instead of username and password")
|
loginCmd.Flags().BoolVar(&loginPersistentFlag,
|
||||||
|
"persistent",
|
||||||
|
false,
|
||||||
|
"If the given credential should be stored persistent")
|
||||||
|
|
||||||
loginCmd.Flags().BoolVar(&loginPersistentFlag, "persistent", false, "If the given credential should be stored persistent")
|
loginCmd.Flags().BoolVar(&loginSessionIDFlag,
|
||||||
|
"session-id",
|
||||||
|
false,
|
||||||
|
"Use a session id to login instead of username and password")
|
||||||
|
|
||||||
rootCmd.AddCommand(loginCmd)
|
rootCmd.AddCommand(loginCmd)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue