Contents:
from __future__ import annotations from abc import ABC, abstractmethod [docs]class Command(ABC): [docs] @abstractmethod def execute(self) -> None: pass