9 lines
209 B
Python
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")
|