diff --git a/api/models/info.py b/api/models/info.py index edcde12b..06b102c1 100644 --- a/api/models/info.py +++ b/api/models/info.py @@ -10,6 +10,7 @@ class ContactFields(BaseModel): email: str + class BrandingFields(BaseModel): """ Implements the fields for the API owner branding info. @@ -17,6 +18,7 @@ class BrandingFields(BaseModel): logo: str + class InfoFields(BaseModel): """ Implements the fields for the API owner info. diff --git a/config.py b/config.py index 043774f2..ba48b2e7 100644 --- a/config.py +++ b/config.py @@ -120,7 +120,9 @@ default_info: dict[str, str | list[str | bool] | bool] = { "name": "ReVanced", "about": "ReVanced was born out of Vanced's discontinuation and it is our goal to continue the legacy of what Vanced left behind. Thanks to ReVanced Patcher, it's possible to create long-lasting patches for nearly any Android app. ReVanced's patching system is designed to allow patches to work on new versions of the apps automatically with bare minimum maintenance.", - "branding": {"logo": "https://raw.githubusercontent.com/ReVanced/revanced-branding/main/assets/revanced-logo/revanced-logo.svg"}, + "branding": { + "logo": "https://raw.githubusercontent.com/ReVanced/revanced-branding/main/assets/revanced-logo/revanced-logo.svg" + }, "contact": {"email": "contact@revanced.app"}, "socials": social_links, "donations": {"wallets": wallets, "links": links},