(scene_id: str)
| 1712 | |
| 1713 | |
| 1714 | def _find_scene(scene_id: str): |
| 1715 | for s in _all_scenes: |
| 1716 | if s["scene_id"] == scene_id: |
| 1717 | return s |
| 1718 | return None |
| 1719 | |
| 1720 | |
| 1721 | @app.post("/api/scene/{scene_id}/export_glb") |
no outgoing calls
no test coverage detected