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")