telegram_bots/aggregator/management/commands/start_aggregator_client.py

9 lines
184 B
Python
Raw Normal View History

2019-01-27 21:20:09 +00:00
from django.core.management import BaseCommand
from aggregator.client import start_client
class Command(BaseCommand):
def handle(self, *args, **options):
start_client()