2026-rff_mp/BrychkinKA/src/ui/observer.py
2026-05-25 15:23:54 +03:00

6 lines
124 B
Python

from abc import ABC, abstractmethod
class Observer(ABC):
@abstractmethod
def update(self, event: str):
pass