2024-07-05 09:15:07 +00:00
|
|
|
from typing import Callable
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
class Command(BaseModel):
|
2024-07-05 14:05:35 +00:00
|
|
|
"""
|
|
|
|
Basic command structure for the CLI to automatically generate valid commands
|
|
|
|
"""
|
2024-07-05 09:15:07 +00:00
|
|
|
cmd: str
|
2024-07-05 22:16:41 +00:00
|
|
|
func: Callable
|
2024-07-05 09:15:07 +00:00
|
|
|
args: int
|
|
|
|
optional: bool
|
|
|
|
description: str
|