Skip to content

prefect.server.api.root

Contains the hello route for testing and healthcheck purposes.

hello() async

Say hello!

Source code in src/prefect/server/api/root.py
15
16
17
18
@router.get("/hello")
async def hello():
    """Say hello!"""
    return "👋"