9 lines
232 B
Python
9 lines
232 B
Python
from django.core.management.base import BaseCommand
|
|
from GaiaDBInterface.models import GaiaSource, CatalogFile
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Index sources using healpix.'
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
|