blob: 2297a26c0b918821b80cc6bd5ed09cebdc6def65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import os
import json
import mapping
os.chdir(os.path.dirname(os.path.realpath(__file__)))
with open("config.json") as f:
config = json.load(f)
mappings = mapping.load_mappings("mappings")
|