Files
django-stubs/django/core/management/commands/runserver.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

9 lines
353 B
Python

from django.core.handlers.wsgi import WSGIHandler
from django.core.management.base import CommandParser
class Command:
def add_arguments(self, parser: CommandParser) -> None: ...
def execute(self, *args, **options) -> None: ...
def get_handler(self, *args, **options) -> WSGIHandler: ...
def handle(self, *args, **options) -> None: ...