11 lines
191 B
Python
11 lines
191 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class CommandHandler(ABC):
|
|
name: str = ""
|
|
description: str = ""
|
|
|
|
@abstractmethod
|
|
def build(self, args: list[str]) -> bytes:
|
|
pass
|