mirror of
https://github.com/MarcZierle/photo-log-backend.git
synced 2025-01-04 05:37:58 +00:00
8 lines
197 B
Python
8 lines
197 B
Python
from django.urls import path
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
urlpatterns = [
|
|
path('', TemplateView.as_view(template_name="scrapers_home.html"), name='scrapers_home'),
|
|
]
|