diff --git a/billard/management/__init__.py b/billard/management/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/billard/management/commands/__init__.py b/billard/management/commands/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/billard/management/commands/process_location_data.py b/billard/management/commands/process_location_data.py new file mode 100644 index 0000000..48567c2 --- /dev/null +++ b/billard/management/commands/process_location_data.py @@ -0,0 +1,9 @@ +from django.core.management.base import BaseCommand, CommandError +from billard.tasks import process_location_data + + +class Command(BaseCommand): + help = 'Process location data objects' + + def handle(self, *args, **options): + process_location_data