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