2009-11-18 19:10:50 +08:00
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
|
2009-12-02 08:30:00 +08:00
|
|
|
|
2009-11-18 19:10:50 +08:00
|
|
|
class Command(BaseCommand):
|
2014-06-07 04:39:33 +08:00
|
|
|
def add_arguments(self, parser):
|
2016-04-08 10:04:45 +08:00
|
|
|
parser.add_argument("--list", action="store_true", dest="list", help="Print all options")
|
2009-11-18 19:10:50 +08:00
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
pass
|