mirror of
https://github.com/rjNemo/vf-site
synced 2026-06-06 01:16:38 +00:00
7 lines
139 B
Python
7 lines
139 B
Python
import json
|
|
|
|
|
|
def load_templates():
|
|
with open("config.json", "r") as f:
|
|
res = json.loads(f.read())
|
|
return res["templates"]
|