ContainerImage.Pinniped/cmd/placeholder-name/main.go
Matt Moyer c85507e46d Add Apache 2.0 license.
See https://www.apache.org/licenses/LICENSE-2.0.txt.

Signed-off-by: Matt Moyer <moyerm@vmware.com>
2020-07-06 13:50:31 -05:00

17 lines
221 B
Go

/*
Copyright 2020 VMware, Inc.
SPDX-License-Identifier: Apache-2.0
*/
package main
import (
"fmt"
"github.com/suzerain-io/placeholder-name/pkg/hello"
)
func main() {
fmt.Println(hello.NewHelloSayer().SayHello())
}