diff --git a/management/commands/indexer.py b/management/commands/indexer.py new file mode 100644 index 0000000..06c906c --- /dev/null +++ b/management/commands/indexer.py @@ -0,0 +1,9 @@ +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): + + \ No newline at end of file