2026-rff_mp/vinichukan/src/ui/observer.py
2026-05-24 11:40:51 +03:00

8 lines
126 B
Python

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