telegram_bots/aggregator/management/commands/start_aggregator_client.py
2019-01-28 00:20:09 +03:00

9 lines
184 B
Python

from django.core.management import BaseCommand
from aggregator.client import start_client
class Command(BaseCommand):
def handle(self, *args, **options):
start_client()