5 lines
92 B
Python
5 lines
92 B
Python
"""Server application package."""
|
|
from .factory import create_app
|
|
|
|
__all__ = ["create_app"]
|