Corp_AI / src /auditenv /web_server.py
Arpit Deep
feat: initial AuditEnv submission
a617acd
raw
history blame contribute delete
241 Bytes
"""
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"]