From 6df8af77df116f13e5fa22a2b2f1b8a579df0e2a Mon Sep 17 00:00:00 2001 From: tyrin Date: Wed, 11 Sep 2024 12:11:33 +0300 Subject: [PATCH] started work on the indexer script --- management/commands/indexer.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 management/commands/indexer.py 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