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