File size: 326 Bytes
ef4c8c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""

app/__init__.py: Exposes main backend components for reuse.

"""

from .Api import app as fastapi_app
from .Core import job_manager
from .Progress import progress_tracker
from .Payment import payment_manager

__all__ = [
    "fastapi_app",
    "job_manager",
    "progress_tracker",
    "payment_manager",
]