added trigger mapping

This commit is contained in:
2024-12-05 13:29:56 +01:00
parent 51b8647ded
commit 9623cfcf2c
6 changed files with 47 additions and 8 deletions
+7
View File
@@ -0,0 +1,7 @@
from types import MappingProxyType
from triggers.roon import RoonTrigger
_dict_mapping = {
'roon': RoonTrigger
}
trigger_mapping = MappingProxyType(_dict_mapping)