Files
LangBot/pkg/utils/schema.py
2024-10-15 16:16:39 +08:00

11 lines
220 B
Python

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")