mirror of
https://github.com/kopia/kopia.git
synced 2026-03-05 14:57:36 -05:00
* feat(infra): improved support for in-process testing * support for killing of a running server using simulated Ctrl-C * support for overriding os.Stdin * migrated many tests from the exe runner to in-process runner * added required indirection when defining Envar() so we can later override it in tests * refactored CLI runners by moving environment overrides to CLITestEnv
12 lines
224 B
Go
12 lines
224 B
Go
//go:build !windows && !linux && !darwin
|
|
// +build !windows,!linux,!darwin
|
|
|
|
package cli
|
|
|
|
import (
|
|
"github.com/alecthomas/kingpin"
|
|
)
|
|
|
|
func (c *App) setupOSSpecificKeychainFlags(svc appServices, app *kingpin.Application) {
|
|
}
|