first commit

This commit is contained in:
2026-03-21 00:25:40 +00:00
commit 48bf6f6728
19 changed files with 806 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
from .fastrestart import Fastrestart
from .gametype import Gametype
from .hostname import Hostname
from .map import Map
from .mapname import Mapname
from .maprotate import Maprotate
from .plugins import Plugins
from .status import Status
__all__ = [
'Status',
'Mapname',
'Maprotate',
'Fastrestart',
'Gametype',
'Hostname',
'Map',
'Plugins',
]