diff options
Diffstat (limited to 'notification/notif.go')
-rw-r--r-- | notification/notif.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/notification/notif.go b/notification/notif.go new file mode 100644 index 0000000..b436c19 --- /dev/null +++ b/notification/notif.go @@ -0,0 +1,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 +} |