Source code for pagetools.subscriptions.management.commands.send_news_queue

from django.core.management.base import BaseCommand

from pagetools.subscriptions import utils


[docs]class Command(BaseCommand): help = "sending news from queue"
[docs] def handle(self, *args, **options): utils.send_max()