This commit is contained in:
Auric Vente
2024-07-22 02:11:52 -06:00
parent 828a6cb6d4
commit e0c6dc3bde
3 changed files with 36 additions and 7 deletions

View File

@@ -41,3 +41,8 @@ class Storage:
def get_countries() -> Any:
with Config.countries_json.open() as file:
return json.load(file)
@staticmethod
def get_manifest() -> Any:
with Config.manifest_path.open() as file:
return json.load(file)