Files
LangBot/pkg/utils/schema.py

11 lines
220 B
Python
Raw Normal View History

2024-10-15 16:16:39 +08:00
import os
import json
def load_schema(schema_path: str) -> dict:
with open(schema_path, 'r', encoding='utf-8') as f:
return json.load(f)
CONFIG_SYSTEM_SCHEMA = load_schema("templates/schema/system.json")