rename commands submodule to subcommands.

add Maprestart.with_configure()
This commit is contained in:
2026-03-25 09:35:09 +00:00
parent d37314f584
commit f112760a74
11 changed files with 22 additions and 42 deletions

View File

@@ -6,29 +6,7 @@ from typing_extensions import override
from . import config, console
from .__about__ import __version__
from .commands import (
Fastrestart,
Gametype,
Hostname,
Map,
Mapname,
Maprestart,
Maprotate,
Plugins,
Status,
)
Subcommands = (
Fastrestart
| Gametype
| Hostname
| Map
| Mapname
| Maprestart
| Maprotate
| Plugins
| Status
)
from .subcommands import Status, Subcommands
class Q3rconCli(Command):