mirror of
https://github.com/revanced/revanced-polling-api.git
synced 2025-04-29 22:24:26 +02:00
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")
|