logsentinel / server /__init__.py
Surya-sj's picture
feat: LogSentinel v2 — Multi-Agent SOC War-Room
f7d58be
Raw
History Blame Contribute Delete
205 Bytes
"""
server package — re-exports FastAPI app from server.app so that
`from server import app` resolves to the FastAPI application instance.
"""
from server.app import app # noqa: F401
__all__ = ["app"]