1
0

refactor: basically finish ExpFctsRender

This commit is contained in:
2026-01-28 16:19:59 +08:00
parent 69ac25a70b
commit 29d98edbdc
5 changed files with 299 additions and 0 deletions

View File

@@ -1,9 +1,15 @@
import json_loader
import template_render
import utils
def main():
render = template_render.TemplateRender()
fcts = json_loader.load_fcts("BMExports.json")
render.render_cs_expfcts("BMExports.cs", fcts)
render.render_py_expfcts("BMExports.py", fcts)
render.render_rs_expfcts("BMExports.rs", fcts)
print("Done")