mirror of
https://github.com/kopia/kopia.git
synced 2025-12-23 22:57:50 -05:00
* chore(ci): upgraded linter to 1.53.3 This flagged a bunch of unused parameters, so the PR is larger than usual, but 99% mechanical. * separate lint CI task * run Lint in separate CI
10 lines
273 B
Go
10 lines
273 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/alecthomas/kingpin/v2"
|
|
)
|
|
|
|
func (c *App) setupOSSpecificKeychainFlags(_ appServices, app *kingpin.Application) {
|
|
app.Flag("use-keychain", "Use macOS Keychain for storing repository password.").Default("true").BoolVar(&c.keyRingEnabled)
|
|
}
|