Add checksnappea command

This commit is contained in:
Klaas van Schelven
2024-05-17 12:03:40 +02:00
parent d2ba9b9ddb
commit 5ff2623112

View File

@@ -0,0 +1,11 @@
from django.core.management.base import BaseCommand
from snappea.example_tasks import fast_task
class Command(BaseCommand):
help = "Send a task to Snappea for debugging"
def handle(self, *args, **options):
print("Sending task to Snappea")
fast_task.delay()