2020-07-06 18:40:48 +00:00
|
|
|
/*
|
|
|
|
Copyright 2020 VMware, Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2020-07-03 00:05:59 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2020-07-08 17:06:44 +00:00
|
|
|
"os"
|
2020-07-07 19:54:14 +00:00
|
|
|
|
2020-07-08 17:06:44 +00:00
|
|
|
"github.com/suzerain-io/placeholder-name/cmd/placeholder-name/app"
|
2020-07-03 00:05:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2020-07-08 17:06:44 +00:00
|
|
|
if err := app.New(os.Args[1:], os.Stdout, os.Stderr).Run(); err != nil {
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2020-07-03 00:05:59 +00:00
|
|
|
}
|