blob: b2943d33ed7219dbaec70c14d40e764f66dc144d (
plain)
1
2
3
4
5
6
7
8
9
|
from django.core.management.base import BaseCommand
class Command(BaseCommand):
def add_arguments(self, parser):
parser.add_argument("--list", action="store_true", help="Print all options")
def handle(self, *args, **options):
pass
|