()
| 30 | audio_output_path = audio_save_path / "output" |
| 31 | |
| 32 | def get_db(): |
| 33 | db = SessionLocal() |
| 34 | try: |
| 35 | yield db |
| 36 | finally: |
| 37 | db.close() |
| 38 | |
| 39 | # FastAPI BackgroundTasks |
| 40 | def bg_task(file_path: FilePath, title: str, db: Session): |
nothing calls this directly
no outgoing calls
no test coverage detected