Files
agentic-mobile-control/apps/cloud-api/cloud_api/app.py
T

9 lines
209 B
Python

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