from fastapi import Depends from app.features.story.service import StoryService from app.core.deps_types import DbDep async def get_story_service(db: DbDep) -> StoryService: return StoryService(db=db)