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