diff --git a/app.go b/app.go index af53038..a29c6af 100644 --- a/app.go +++ b/app.go @@ -2,7 +2,6 @@ package main import ( "context" - "fmt" ) // App struct @@ -20,8 +19,3 @@ func NewApp() *App { func (a *App) startup(ctx context.Context) { a.ctx = ctx } - -// Greet returns a greeting for the given name -func (a *App) Greet(name string) string { - return fmt.Sprintf("Hello %s, It's show time!", name) -}