mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-16 04:58:01 +00:00
14 lines
414 B
Python
14 lines
414 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
ivatar/tools URL configuration
|
|
"""
|
|
|
|
from django.conf.urls import url
|
|
from .views import CheckView, CheckDomainView
|
|
|
|
urlpatterns = [ # pylint: disable=invalid-name
|
|
url("check/", CheckView.as_view(), name="tools_check"),
|
|
url("check_domain/", CheckDomainView.as_view(), name="tools_check_domain"),
|
|
url("check_domain$", CheckDomainView.as_view(), name="tools_check_domain"),
|
|
]
|