chore: Initial commit

This commit is contained in:
2026-07-19 18:33:58 +01:00
commit 0d68751a78
5 changed files with 170 additions and 0 deletions

13
spoolstore/__main__.py Normal file
View File

@@ -0,0 +1,13 @@
# noqa: D100
from solid2 import scad_render_to_file
from spoolstore.poc import gen_drawer
def _main() -> None:
drawer = gen_drawer()
scad_render_to_file(drawer, "out.scad")
if __name__ == "__main__":
_main()