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) -} diff --git a/frontend/package.json.md5 b/frontend/package.json.md5 index d4671a1..c0099f5 100644 --- a/frontend/package.json.md5 +++ b/frontend/package.json.md5 @@ -1 +1 @@ -5fbf12469d224a93954efecb5886e8a6 \ No newline at end of file +be0c7dc3573b2470ab6a8ec4c48845b6 \ No newline at end of file diff --git a/main.go b/main.go index 16d4269..0950115 100644 --- a/main.go +++ b/main.go @@ -26,7 +26,7 @@ func main() { }) KeysQuit, _ := keys.Parse("Ctrl+Q") - FileMenu.AddText("&Refresh", KeysQuit, func(_ *menu.CallbackData) { + FileMenu.AddText("&Exit", KeysQuit, func(_ *menu.CallbackData) { runtime.Quit(app.ctx) })