diff --git a/pkg/hello/hello.go b/pkg/hello/hello.go index 936c05b8..c05d2f00 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 "hello" } +func (helloSayerImpl) SayHello() string { return "goodbye" } func NewHelloSayer() HelloSayer { return helloSayerImpl{}