Removed old notification system
All checks were successful
Build and deploy / build (push) Successful in 8m50s
Build and deploy / Deploy container (push) Successful in 39s

This commit is contained in:
2025-08-31 00:56:42 +02:00
parent 6c9d2c16c1
commit 03dcd44e0e
4 changed files with 3 additions and 35 deletions

View File

@@ -5,7 +5,7 @@ use dyn_clone::DynClone;
use google_home::traits::OnOff;
use mlua::ObjectLike;
use crate::event::{OnDarkness, OnMqtt, OnNotification, OnPresence};
use crate::event::{OnDarkness, OnMqtt, OnPresence};
#[async_trait::async_trait]
pub trait LuaDeviceCreate {
@@ -26,7 +26,6 @@ pub trait Device:
+ Cast<dyn OnMqtt>
+ Cast<dyn OnPresence>
+ Cast<dyn OnDarkness>
+ Cast<dyn OnNotification>
+ Cast<dyn OnOff>
{
fn get_id(&self) -> String;