removed greet function that came with wails

This commit is contained in:
John O'Keefe 2024-07-30 20:39:26 -04:00
parent d2ef265807
commit de38d0335b

6
app.go
View File

@ -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)
}