mirror of
https://github.com/DeclanHoare/shiftgears.git
synced 2025-01-22 18:02:16 +00:00
10 lines
193 B
Python
10 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")
|