mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-08-15 11:46:12 +00:00
19 lines
278 B
Go
19 lines
278 B
Go
/*
|
|
Copyright 2020 VMware, Inc.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/suzerain-io/placeholder-name/cmd/placeholder-name/app"
|
|
)
|
|
|
|
func main() {
|
|
if err := app.New(os.Args[1:], os.Stdout, os.Stderr).Run(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|