7 lines
212 B
Python
7 lines
212 B
Python
from django.urls import path, include
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = [
|
|
path("admin/", admin.site.urls),
|
|
path("brews/", include(("reinheit.apps.brew.urls", "brew"), namespace="brews")),
|
|
]
|