diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-03-12 13:56:30 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-03-12 13:56:50 -0700 |
| commit | caa3cf245186ab0f6fb33e63a7dd838d834da12e (patch) | |
| tree | bc5742a134ecabf0b9d35cc12b1d6f67defd5da7 /community/__init__.py | |
| parent | 5658441ab9b703c95a48e654d41e45cc3a55ffd3 (diff) | |
refactor: move to common NewsSource interface
cleanup imports by defining initaliazers modules and decorator
remove legacy scrapers
remove single factory for sega games (sites don't change that much)
Diffstat (limited to 'community/__init__.py')
| -rw-r--r-- | community/__init__.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/community/__init__.py b/community/__init__.py new file mode 100644 index 0000000..835b7e6 --- /dev/null +++ b/community/__init__.py @@ -0,0 +1,12 @@ +from community.disc import fetch_messages +from community.museca_plus import parse_museca_plus_news_site +from community.rbdx import get_carousel_posts +from community.wacca_plus.wacca_plus import parse_announcement_messages, check_is_generation_possible + +__all__ = [ + "fetch_messages", + "parse_museca_plus_news_site", + "get_carousel_posts", + "parse_announcement_messages", + "check_is_generation_possible", +]
\ No newline at end of file |
