An open API service indexing awesome lists of open source software.

https://github.com/sjkaliski/notify-go

Create desktop notifications in MacOS with Go.
https://github.com/sjkaliski/notify-go

golang macos notifications

Last synced: 2 months ago
JSON representation

Create desktop notifications in MacOS with Go.

Awesome Lists containing this project

README

          

# notify-go

Create desktop notifications in MacOS with Go.

![example alert](notify.png)

## Usage

```go
message := &notify.Message{
Title: "Foo",
Body: "Bar",
}

err := notify.Alert(message)
if err != nil {
panic(err)
}
```