spark / main.py
brestok's picture
init
cd46ce5
raw
history blame contribute delete
226 Bytes
"""
FastAPI application entry point for ClipboardHealthAI.
This file creates and launches the FastAPI application by importing the create_app
function from the cbh package.
"""
from cbh import create_app
app = create_app()