8 lines
268 B
Python
8 lines
268 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")),
|
|
path("oidc/", include("oauth2_authcodeflow.urls")),
|
|
]
|