logsentinel / server.py
Surya-sj's picture
feat: LogSentinel v2 — Multi-Agent SOC War-Room
f7d58be
Raw
History Blame Contribute Delete
343 Bytes
"""
server.py — thin re-export shim.
The canonical app definition lives in server/app.py.
This file exists for tooling that does `from server import app` when
the server/ package is not on sys.path, and as a standalone entry point.
"""
# Re-export app from the canonical location
from server.app import app # noqa: F401
__all__ = ["app"]