File size: 265 Bytes
71b4454
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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()