|
|
|
@ -16,13 +16,12 @@ Including another URLconf |
|
|
|
""" |
|
|
|
from django.contrib import admin |
|
|
|
from django.urls import path, include |
|
|
|
from django.views.generic import TemplateView |
|
|
|
from core.views import HealthCheckView |
|
|
|
|
|
|
|
urlpatterns = [ |
|
|
|
path('', TemplateView.as_view(template_name='index.html'), name='dashboard'), |
|
|
|
path('admin/', admin.site.urls), |
|
|
|
path('api/health/', HealthCheckView.as_view(), name='health-check'), |
|
|
|
path('api/crawlers/', include('crawler.urls')), |
|
|
|
path('api/ads/', include('ads.urls')), |
|
|
|
] |
|
|
|
|