diff --git a/pkg/hello/hello.go b/pkg/hello/hello.go index c05d2f00..936c05b8 100644 --- a/pkg/hello/hello.go +++ b/pkg/hello/hello.go @@ -6,7 +6,7 @@ type HelloSayer interface { type helloSayerImpl struct{} -func (helloSayerImpl) SayHello() string { return "goodbye" } +func (helloSayerImpl) SayHello() string { return "hello" } func NewHelloSayer() HelloSayer { return helloSayerImpl{}