mirror of
https://github.com/kopia/kopia.git
synced 2026-03-08 00:08:26 -05:00
also upgraded github.com/klauspost/reedsolomon to latest non-retracted version go mod tidy
10 lines
275 B
Go
10 lines
275 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/alecthomas/kingpin/v2"
|
|
)
|
|
|
|
func (c *App) setupOSSpecificKeychainFlags(svc appServices, app *kingpin.Application) {
|
|
app.Flag("use-keychain", "Use macOS Keychain for storing repository password.").Default("true").BoolVar(&c.keyRingEnabled)
|
|
}
|