10 lines
167 B
Python
10 lines
167 B
Python
from django.urls import path
|
|
|
|
from .views import IngestionHomeView
|
|
|
|
app_name = "ingestion"
|
|
|
|
urlpatterns = [
|
|
path("", IngestionHomeView.as_view(), name="index"),
|
|
]
|