mirror of
https://github.com/DeclanHoare/shiftgears.git
synced 2025-01-22 08:11:52 -05:00
11 lines
193 B
Python
11 lines
193 B
Python
|
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")
|