File size: 180 Bytes
21c7db9 | 1 2 3 4 5 6 7 8 9 10 11 12 | """API dependencies."""
from __future__ import annotations
from app.api.service import APIService
_SERVICE = APIService()
def get_service() -> APIService:
return _SERVICE
|
21c7db9 | 1 2 3 4 5 6 7 8 9 10 11 12 | """API dependencies."""
from __future__ import annotations
from app.api.service import APIService
_SERVICE = APIService()
def get_service() -> APIService:
return _SERVICE
|