mirror of
https://github.com/MarcZierle/photo-log-backend.git
synced 2025-01-06 06:27:57 +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'),
|
||
|
]
|