From 258b17c278e301ef1f96bb9c41f4c6da83c8f6c0 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Thu, 28 Dec 2023 13:12:18 +0100 Subject: [PATCH] Fix windows and mac builds --- agent/notify/unimplemented.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/notify/unimplemented.go b/agent/notify/unimplemented.go index 889525c..d08ff47 100644 --- a/agent/notify/unimplemented.go +++ b/agent/notify/unimplemented.go @@ -2,7 +2,7 @@ package notify -func Notify(title string, body string) error { +func Notify(title string, body string, actionName string, onclose func()) error { // no notifications on windows or darwin return nil }