added test triggers

This commit is contained in:
2024-12-15 23:31:56 +01:00
parent d65f8c2efe
commit ccabbea9c6
5 changed files with 33 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
from trigger import Trigger
from config import Config
class TestTrigger1(Trigger):
def __init__(self, _config: Config) -> None:
super().__init__(_config)
def run(self) -> bool:
self.log.info("run check code of %s", self.__class__.__name__)
return False