8 lines
85 B
Python
8 lines
85 B
Python
|
|
"""
|
||
|
|
API module for FastAPI application
|
||
|
|
"""
|
||
|
|
from .main import app
|
||
|
|
|
||
|
|
__all__ = ["app"]
|
||
|
|
|