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