osu-wayback/objects/glob.py

10 lines
176 B
Python
Raw Normal View History

2019-03-11 07:06:31 +01:00
import json
from multiprocessing.pool import ThreadPool
with open("config.json", "r") as f:
config = json.load(f)
app = None
sql = None
pool = ThreadPool(config["threads"])