blob: b436c19b6235e48264ce4f09d1cdb894e2109c7b (
plain) (
tree)
|
|
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
}
|