10 lines
318 B
Python
10 lines
318 B
Python
|
|
from django.contrib import admin
|
||
|
|
from django.urls import include, path
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("admin/", admin.site.urls),
|
||
|
|
path("healthz", include("coulomb_social.apps.core.urls_health")),
|
||
|
|
path("auth/", include("coulomb_social.apps.identity.urls")),
|
||
|
|
path("", include("coulomb_social.apps.core.urls")),
|
||
|
|
]
|