2026-rff_mp/petryaninyas/task2/commands/command.py
2026-05-24 19:43:30 +03:00

12 lines
210 B
Python

from abc import ABC, abstractmethod
class Command(ABC):
@abstractmethod
def execute(self):
raise NotImplementedError
@abstractmethod
def undo(self):
raise NotImplementedError