2019-01-19 05:50:16 +03:00
|
|
|
from .echo import EchoFeedModuleConfig
|
2019-01-25 19:33:22 +03:00
|
|
|
from .vk_feed import VKFeedModuleConfig
|
2019-01-26 09:36:56 +03:00
|
|
|
from .vk_music import VKMusicFeedModuleConfig
|
2019-01-25 20:12:44 +03:00
|
|
|
from .dank_memes import DankMemesFeedModuleConfig
|
|
|
|
|
from .shitty_watercolour import ShittyWatercolourFeedModuleConfig
|
|
|
|
|
from .wp_comic import WPComicFeedModuleConfig
|
2019-03-09 22:11:42 +03:00
|
|
|
from .twitter import TwitterFeedModuleConfig
|
2019-03-31 22:58:20 +03:00
|
|
|
from .tapas import TapasFeedModuleConfig
|
2019-11-25 15:39:45 +03:00
|
|
|
from .nerfnow import NerfNowFeedModuleConfig
|
2019-01-19 05:50:16 +03:00
|
|
|
|
2019-01-26 10:24:24 +03:00
|
|
|
FEED_MODULES = [EchoFeedModuleConfig, VKFeedModuleConfig, VKMusicFeedModuleConfig, DankMemesFeedModuleConfig,
|
2019-03-31 22:58:20 +03:00
|
|
|
ShittyWatercolourFeedModuleConfig, WPComicFeedModuleConfig, TwitterFeedModuleConfig,
|
2019-11-25 15:39:45 +03:00
|
|
|
TapasFeedModuleConfig, NerfNowFeedModuleConfig]
|
2019-01-26 09:36:56 +03:00
|
|
|
|