diff --git a/notifications.go b/notifications.go index e624646..b84e270 100644 --- a/notifications.go +++ b/notifications.go @@ -1,4 +1,4 @@ -// +build linux +// +build linux darwin package main diff --git a/notifications_stub.go b/notifications_stub.go new file mode 100644 index 0000000..3edb3d7 --- /dev/null +++ b/notifications_stub.go @@ -0,0 +1,6 @@ +// +build !linux !darwin + +package main + +func notify(title string, body string) { +}