Coverage for ivatar/tools/urls.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.5.1, created at 2024-05-18 23:09 +0000

1# -*- coding: utf-8 -*- 

2""" 

3ivatar/tools URL configuration 

4""" 

5 

6from django.urls import path, re_path 

7from .views import CheckView, CheckDomainView 

8 

9urlpatterns = [ # pylint: disable=invalid-name 

10 path("check/", CheckView.as_view(), name="tools_check"), 

11 path("check_domain/", CheckDomainView.as_view(), name="tools_check_domain"), 

12 re_path("check_domain$", CheckDomainView.as_view(), name="tools_check_domain"), 

13]