Semantic changes..

This commit is contained in:
2023-07-07 18:54:08 +03:00
parent 5d6ecf90e9
commit 0632d9ddfa
2 changed files with 0 additions and 0 deletions
@@ -0,0 +1,9 @@
class Config:
Auth: dict
Game: dict
Server: dict
def __repr__(self):
return "%s(Auth=%r, Game=%r, Server=%r)" % (self.__class__.__name__, self.Auth, self.Game, self.Server)
class config (Config): ...