revanced-releases-api/app/dependencies.py
2022-12-26 17:20:58 -03:00

13 lines
248 B
Python

import tomllib as toml
def load_config() -> dict:
"""Loads the config.toml file.
Returns:
dict: the config.toml file as a dict
"""
with open('config.toml', 'rb') as config_file:
return toml.load(config_file)