mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-12 20:45:20 +02:00
feat(podcasts): add module package init
This commit is contained in:
parent
b4c6061353
commit
8dd29fa833
1 changed files with 10 additions and 0 deletions
10
surfsense_backend/app/podcasts/__init__.py
Normal file
10
surfsense_backend/app/podcasts/__init__.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
"""Podcast generation: brief resolution, transcript drafting, and audio rendering.
|
||||
|
||||
The public surface grows as the module is built. For now it owns the
|
||||
``podcasts`` table model, which :mod:`app.db` re-exports so existing
|
||||
``from app.db import Podcast`` call sites keep working during the migration.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
__all__: list[str] = []
|
||||
Loading…
Add table
Add a link
Reference in a new issue