mirror of
https://github.com/revanced/revanced-static-api.git
synced 2025-04-29 22:24:37 +02:00
7 lines
129 B
Python
7 lines
129 B
Python
import json
|
|
|
|
|
|
def load_config() -> dict:
|
|
with open("config.json", "r") as config_file:
|
|
return json.load(config_file)
|