mirror of
https://github.com/miaowware/qrm2.git
synced 2024-10-31 14:27:11 -04:00
0241d1856a
- Added Resource Manager - Migrated most exts to it - Added config entry for the resources URL - Added my ID to template - Bumped copyright on edited files Fixes #246
19 lines
405 B
Python
19 lines
405 B
Python
"""
|
|
Resource schemas generator for qrm2.
|
|
---
|
|
Copyright (C) 2021 Abigail Gold, 0x5c
|
|
|
|
This file is part of qrm2 and is released under the terms of
|
|
the GNU General Public License, version 2.
|
|
"""
|
|
|
|
|
|
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!")
|