""" AuditEnv web server entry point. This module provides the FastAPI application for AuditEnv. Use: uvicorn auditenv.server:app --host 0.0.0.0 --port 8000 --app-dir src """ from auditenv.server import app # noqa: F401 __all__ = ["app"]