19 lines
287 B
Go
19 lines
287 B
Go
package flags
|
|
|
|
const (
|
|
FlagInsecure = "insecure"
|
|
FlagUpdate = "update"
|
|
FlagConfig = "config"
|
|
FlagLong = "long"
|
|
FlagOutput = "output"
|
|
|
|
FlagKeyringBackend = "keyring-backend"
|
|
)
|
|
|
|
const (
|
|
OutputFormatText = "text"
|
|
OutputFormatJSON = "json"
|
|
|
|
DefaultKeyringBackend = "os"
|
|
)
|