summary refs log tree commit diff stats
path: root/notification/notif.go
blob: b436c19b6235e48264ce4f09d1cdb894e2109c7b (plain) (blame)
1
2
3
4
5
6
7
8
package notification

// Notif struct holds information about the notification. Other
// parameters like urgency & timeout could be added when required.
type Notif struct {
	Title   string
	Message string
}