qrm2/resource_schemas.py

19 lines
362 B
Python
Raw Permalink Normal View History

"""
Resource schemas generator for qrm2.
---
2023-01-29 00:43:56 -05:00
Copyright (C) 2021-2023 classabbyamp, 0x5c
SPDX-License-Identifier: LiLiQ-Rplus-1.1
"""
import json
import utils.resources_models as models
print("Generating schema for index.json")
with open("./dev-notes/rs_index_schema.json", "w") as file:
json.dump(models.Index.model_json_schema(), file)
print("Done!")