12 lines
245 B
Python
12 lines
245 B
Python
|
import json
|
||
|
import os
|
||
|
|
||
|
folder = os.path.dirname(os.path.realpath(__file__))
|
||
|
|
||
|
|
||
|
def load_template(name: str):
|
||
|
template = None
|
||
|
with open(os.path.join(folder, name + ".json"), "r") as df:
|
||
|
template = json.load(df)
|
||
|
return template
|