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