5 lines
122 B
Python
5 lines
122 B
Python
from ...models import Command
|
|
from .mappings import mapping
|
|
|
|
commands: dict[str, Command] = { c.cmd: c for c in mapping }
|