SurfSense/surfsense_backend/app/podcasts/persistence/__init__.py

9 lines
262 B
Python

"""Models, enums, and data access for the podcasts table."""
from __future__ import annotations
from .enums import PodcastStatus
from .models import Podcast
from .repository import PodcastRepository
__all__ = ["Podcast", "PodcastRepository", "PodcastStatus"]