add aggregator app

This commit is contained in:
2019-01-28 00:20:09 +03:00
parent 8643fc42f9
commit b7e68abb03
29 changed files with 665 additions and 105 deletions

View File

@@ -0,0 +1,8 @@
from django.core.management import BaseCommand
from aggregator.client import start_client
class Command(BaseCommand):
def handle(self, *args, **options):
start_client()