c85507e46d
See https://www.apache.org/licenses/LICENSE-2.0.txt. Signed-off-by: Matt Moyer <moyerm@vmware.com>
17 lines
221 B
Go
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())
|
|
}
|