mirror of
https://github.com/miaowware/qrm2.git
synced 2024-10-31 22:37:11 -04:00
04ccd807cd
Fixes #387
18 lines
342 B
Python
18 lines
342 B
Python
"""
|
|
Resource schemas generator for qrm2.
|
|
---
|
|
Copyright (C) 2021 classabbyamp, 0x5c
|
|
|
|
SPDX-License-Identifier: LiLiQ-Rplus-1.1
|
|
"""
|
|
|
|
|
|
import utils.resources_models as models
|
|
|
|
|
|
print("Generating schema for index.json")
|
|
with open("./dev-notes/rs_index_schema.json", "w") as file:
|
|
file.write(models.Index.schema_json(indent=4))
|
|
|
|
print("Done!")
|