9 lines
192 B
Python
9 lines
192 B
Python
from __future__ import absolute_import, unicode_literals
|
|
from celery import shared_task
|
|
from billard import utils
|
|
|
|
|
|
@shared_task
|
|
def process_location_data():
|
|
utils.process_location_data()
|