mirror of
https://github.com/norohind/SquadsActivityMonitor.git
synced 2025-04-04 17:30:01 +03:00
19 lines
505 B
Python
19 lines
505 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class Hook(ABC): # See at Hook class as to observer in observer pattern
|
|
"""
|
|
In order to implement hook, subclass this class and pass instance to HookSystem.add_update_hook
|
|
"""
|
|
|
|
@abstractmethod
|
|
def update(self, action_id: int, diff: list[dict]) -> None:
|
|
"""
|
|
|
|
:param action_id: action id of diff
|
|
:param diff: the diff like from /diff/123 endpoint
|
|
:return:
|
|
"""
|
|
|
|
raise NotImplemented
|