publish-meetups/publish_meetups/feeds/__init__.py

12 lines
177 B
Python

import logging
from .interface import Feed
from .mastodon_feed import MastodonFeed
from .twitter_feed import TwitterFeed
__all__ = ["Feed", "MastodonFeed", "TwitterFeed"]