5 lines
147 B
Python
5 lines
147 B
Python
"""Server package initializer: expose the Flask app instance for convenience."""
|
|
from server.app import app, init_db
|
|
|
|
__all__ = ["app", "init_db"]
|