Add properties to runserver.Command (#135)

This commit is contained in:
Swen Kooij
2019-08-16 15:44:49 +03:00
committed by Nikita Sobolev
parent 0545c2d3ea
commit 7bf1664307
2 changed files with 8 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
from django.core.management.base import BaseCommand
class Command(BaseCommand): ...
class Command(BaseCommand):
default_addr: str = ...
default_addr_ipv6: str = ...
default_port: int = ...
protocol: str = ...