David Prince
production: clean source snapshot — no history bloat
71b4454
Raw
History Blame Contribute Delete
265 Bytes
from pathlib import Path
from backend.preview.workspace import preview_workspace
class ExportEngine:
async def prepare_apk_export(self, project_id: str) -> Path:
return await preview_workspace.generate_apk(project_id)
export_engine = ExportEngine()