forked from UNN/2026-rff_mp
8 lines
126 B
Python
8 lines
126 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class Observer(ABC):
|
|
@abstractmethod
|
|
def update(self, event: str):
|
|
pass
|