Skip to content

Commit

Permalink
Export more models from model module.
Browse files Browse the repository at this point in the history
  • Loading branch information
bendikrb committed Aug 1, 2024
1 parent e3a6e58 commit 6ffa8ec
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions nrk_psapi/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
"""nrk-psapi models."""

from .catalog import Episode, Podcast
from .catalog import Episode, Podcast, PodcastSeries
from .channels import Channel
from .pages import Curated, CuratedPodcast, CuratedSection
from .recommendations import Recommendation
from .search import SearchResponseResult

__all__ = [
"Podcast",
"Channel",
"Curated",
"CuratedPodcast",
"CuratedSection",
"Episode",
"Podcast",
"PodcastSeries",
"Recommendation",
"SearchResponseResult",
]

0 comments on commit 6ffa8ec

Please sign in to comment.