8 lines
167 B
Python
8 lines
167 B
Python
|
from typing import Any
|
||
|
|
||
|
PlayersList = type('PlayersList', (), {})
|
||
|
FileManager = type('FileManager', (), {})
|
||
|
AternosConfig = type('AternosConfig', (), {})
|
||
|
|
||
|
Lists = Any
|