Move to ConfigProvider

This commit is contained in:
2023-07-05 17:15:42 +03:00
parent 6cb97679cb
commit 57c918b305
2 changed files with 9 additions and 11 deletions

View File

@@ -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): ...