feat(eventsub): implement suspicious user message (#6007)

This commit is contained in:
nerix
2025-03-01 13:48:01 +01:00
committed by GitHub
parent c5d4a3a69b
commit bced3c658d
22 changed files with 872 additions and 62 deletions
@@ -25,6 +25,8 @@ class CommentCommands:
inner_root: str = ""
default: Optional[str] = None
def __init__(self, parent: Optional["CommentCommands"] = None) -> None:
if parent is not None:
self.name_transform = parent.name_transform
@@ -59,6 +61,8 @@ class CommentCommands:
pass
case "json_tag":
self.tag = value
case "default":
self.default = value
case other:
log.warning(f"Unknown comment command found: {other} with value {value}")