2026-rff_mp/petryainiyas/task2/commands/command.py

12 lines
210 B
Python
Raw Normal View History

2026-05-30 19:27:37 +00:00
from abc import ABC, abstractmethod
class Command(ABC):
@abstractmethod
def execute(self):
raise NotImplementedError
@abstractmethod
def undo(self):
raise NotImplementedError