diff options
Diffstat (limited to 'src/actions/desktop_notification.rs')
-rw-r--r-- | src/actions/desktop_notification.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/actions/desktop_notification.rs b/src/actions/desktop_notification.rs index d831a59..6ea89f7 100644 --- a/src/actions/desktop_notification.rs +++ b/src/actions/desktop_notification.rs @@ -17,6 +17,10 @@ impl<'a> DesktopNotificationAction<'a> { #[async_trait] impl Action<'_> for DesktopNotificationAction<'_> { + fn name(&self) -> &'static str { + "desktop_notification" + } + async fn run(&self, params: Option<&MessageParams<'_, '_>>) -> Result<()> { use notify_rust::Notification; Notification::new() |