mirror of
https://github.com/kopia/kopia.git
synced 2026-01-02 19:47:51 -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
13 lines
243 B
Go
13 lines
243 B
Go
//go:build !windows && !linux && !darwin
|
|
// +build !windows,!linux,!darwin
|
|
|
|
package cli
|
|
|
|
import (
|
|
"github.com/alecthomas/kingpin/v2"
|
|
)
|
|
|
|
//nolint:revive
|
|
func (c *App) setupOSSpecificKeychainFlags(svc appServices, app *kingpin.Application) {
|
|
}
|