mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-16 21:05:20 +02:00
9 lines
279 B
Python
9 lines
279 B
Python
"""Podcast feature: brief resolution, transcript drafting, and audio rendering.
|
|
|
|
Owns the ``podcasts`` table model, which :mod:`app.db` re-exports so existing
|
|
``from app.db import Podcast`` imports keep resolving.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
__all__: list[str] = []
|