Fix NameError: import services registry in create_app scope
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 44s

The services singleton was used in before_request closures but the
import was removed when refactoring to domain_services_fn.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
giles
2026-02-19 04:45:37 +00:00
parent b04dbbba67
commit ad445e2fd2

1
app.py
View File

@@ -43,6 +43,7 @@ async def market_context() -> dict:
def create_app() -> "Quart":
from models.market_place import MarketPlace
from shared.services.registry import services
from services import register_domain_services
app = create_base_app(