mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 03:15:06 +08:00
11 lines
220 B
Python
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")
|