From 8dd29fa8338acedc6aaeb00d490d8078d428f11e Mon Sep 17 00:00:00 2001 From: CREDO23 Date: Wed, 10 Jun 2026 18:44:03 +0200 Subject: [PATCH] feat(podcasts): add module package init --- surfsense_backend/app/podcasts/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 surfsense_backend/app/podcasts/__init__.py diff --git a/surfsense_backend/app/podcasts/__init__.py b/surfsense_backend/app/podcasts/__init__.py new file mode 100644 index 000000000..058274b4f --- /dev/null +++ b/surfsense_backend/app/podcasts/__init__.py @@ -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] = []