forked from UNN/2026-rff_mp
12 lines
168 B
Python
12 lines
168 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class Command(ABC):
|
|
@abstractmethod
|
|
def execute(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def undo(self):
|
|
pass
|