[Feature] RSS Feed loader (#942)

This commit is contained in:
Sidharth Mohanty
2023-12-08 03:48:35 +05:30
committed by GitHub
parent 0ea8ab228c
commit d8897ce356
7 changed files with 241 additions and 15 deletions

View File

@@ -33,6 +33,7 @@ class IndirectDataType(Enum):
YOUTUBE_CHANNEL = "youtube_channel"
DISCORD = "discord"
CUSTOM = "custom"
RSSFEED = "rss_feed"
BEEHIIV = "beehiiv"
@@ -66,4 +67,5 @@ class DataType(Enum):
YOUTUBE_CHANNEL = IndirectDataType.YOUTUBE_CHANNEL.value
DISCORD = IndirectDataType.DISCORD.value
CUSTOM = IndirectDataType.CUSTOM.value
RSSFEED = IndirectDataType.RSSFEED.value
BEEHIIV = IndirectDataType.BEEHIIV.value