File size: 241 Bytes
a617acd
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""
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"]