2026-rff_mp/BrychkinKA/src/ui/observer.py

6 lines
124 B
Python
Raw Normal View History

2026-05-25 12:23:54 +00:00
from abc import ABC, abstractmethod
class Observer(ABC):
@abstractmethod
def update(self, event: str):
pass