Ben Petersen f3241e7b04
DO_NOT_MERGE: Test CI Updates
Testing new CI pipeline - external IDPS (okta, jumpcloud, aws active directory) to get earlier feedback
2022-09-28 15:21:18 -04:00

30 lines
662 B
Go

// Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package main
import (
"os"
"github.com/pkg/browser"
"go.pinniped.dev/cmd/pinniped/cmd"
// this side effect import ensures that we use fipsonly crypto in fips_strict mode.
_ "go.pinniped.dev/internal/crypto/ptls"
)
//nolint:gochecknoinits
func init() {
// browsers like chrome like to write to our std out which breaks our JSON ExecCredential output
// thus we redirect the browser's std out to our std err
browser.Stdout = os.Stderr
}
// Hello World!
// DO_NOT_MERGE
func main() {
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
}