mirror of
https://github.com/django/django.git
synced 2024-12-29 04:26:28 +00:00
12 lines
373 B
Python
12 lines
373 B
Python
from django.core.management.base import BaseCommand
|
|
|
|
|
|
class Command(BaseCommand):
|
|
def add_arguments(self, parser):
|
|
subparsers = parser.add_subparsers(dest="subcommand", required=True)
|
|
parser_foo = subparsers.add_parser("foo")
|
|
parser_foo.add_argument("--bar")
|
|
|
|
def handle(self, *args, **options):
|
|
self.stdout.write(",".join(options))
|