- Remove ModuleLogger dependencies from notification and payment services startup - Fix startup blocking issues caused by circular database dependencies - Simplify freeleaps_app.py startup flows for both services - Service startup now completes without database connection dependency
7 lines
142 B
Python
7 lines
142 B
Python
from fastapi import FastAPI
|
|
|
|
|
|
class FreeleapsApp(FastAPI):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|