diff --git a/django_q/management/commands/testq.py b/django_q/management/commands/testq.py deleted file mode 100644 index 793a1cd..0000000 --- a/django_q/management/commands/testq.py +++ /dev/null @@ -1,11 +0,0 @@ -from django.core.management.base import BaseCommand - -from django_q import async - - -class Command(BaseCommand): - help = "My shiny new management command." - - def handle(self, *args, **options): - for i in range(20): - async('testq.tasks.multiply', 2, i) diff --git a/django_q/views.py b/django_q/views.py deleted file mode 100644 index 91ea44a..0000000 --- a/django_q/views.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.shortcuts import render - -# Create your views here.