feat(cloud-api): add workspace application entrypoint

This commit is contained in:
2026-07-12 16:41:17 +08:00
parent 47dfc3b8c5
commit 2af8909b29
8 changed files with 88 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
from __future__ import annotations
from fastapi import FastAPI
def create_app() -> FastAPI:
"""Create the independently deployable cloud API application."""
return FastAPI(title="Device Cloud API")