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.
- Host: GitHub
- URL: https://github.com/sjkaliski/notify-go
- Owner: sjkaliski
- License: mit
- Created: 2018-06-10T17:37:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-10T18:33:09.000Z (about 8 years ago)
- Last Synced: 2025-03-23T02:41:13.506Z (over 1 year ago)
- Topics: golang, macos, notifications
- Language: Go
- Homepage:
- Size: 131 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# notify-go
Create desktop notifications in MacOS with Go.

## Usage
```go
message := ¬ify.Message{
Title: "Foo",
Body: "Bar",
}
err := notify.Alert(message)
if err != nil {
panic(err)
}
```