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

3 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-10-27 00:07 +0000

1""" 

2ivatar/tools URL configuration 

3""" 

4 

5from django.urls import path, re_path 

6from .views import CheckView, CheckDomainView 

7 

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

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

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

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

12]