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

8 lines
126 B
Python
Raw Normal View History

2026-05-24 08:40:51 +00:00
from abc import ABC, abstractmethod
class Observer(ABC):
@abstractmethod
def update(self, event: str):
pass