File size: 205 Bytes
f7d58be
 
 
 
 
 
 
1
2
3
4
5
6
7
8
"""
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"]