mirror of
https://github.com/revanced/revanced-releases-api.git
synced 2025-04-30 14:34:28 +02:00

* refactor: import routers from old branch * refactor: import InternalCache removal * refactor: move routes into dedicated routers * fix: fixes entrypoint * refactor: add documentation and bump libs
10 lines
178 B
Python
10 lines
178 B
Python
import toml
|
|
|
|
def load_config() -> dict:
|
|
"""Loads the config.toml file.
|
|
|
|
Returns:
|
|
dict: the config.toml file as a dict
|
|
"""
|
|
return toml.load("config.toml")
|