11 lines
186 B
Python
11 lines
186 B
Python
|
"""
|
||
|
Configuration of the require_ipv6 Django app
|
||
|
"""
|
||
|
|
||
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class RequireIpv6Config(AppConfig):
|
||
|
name = "require_ipv6"
|
||
|
verbose_name = "Require IPv6"
|