aboutsummaryrefslogtreecommitdiff
path: root/src_py/hatter/common.py
blob: cf99bb9b4c248c7b04d3f2b25e46144f282259b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from pathlib import Path

from hat import json


package_path: Path = Path(__file__).parent

json_schema_repo: json.SchemaRepository = json.SchemaRepository(
    json.json_schema_repo,
    json.SchemaRepository.from_json(package_path / 'json_schema_repo.json'))