Files
pinniped/pkg/hello/hello.go
Ryan Richard 911f8736f1 Hello, world!
2020-07-02 17:05:59 -07:00

14 lines
216 B
Go

package hello
type HelloSayer interface {
SayHello() string
}
type helloSayerImpl struct{}
func (helloSayerImpl) SayHello() string { return "hello" }
func NewHelloSayer() HelloSayer {
return helloSayerImpl{}
}