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