File size: 226 Bytes
cd46ce5
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""
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()