From de38d0335bf2be46feaf7c37200df991c4d2b099 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Tue, 30 Jul 2024 20:39:26 -0400 Subject: [PATCH] removed greet function that came with wails --- app.go | 6 ------ 1 file changed, 6 deletions(-) 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) -}