hotpocket/services/backend/hotpocket_backend/urls/aio.py
Tomek Wójcik b4338e2769
Some checks failed
CI / Checks (push) Failing after 13m2s
Release v1.0.0
2025-08-20 21:00:50 +02:00

18 lines
582 B
Python

# -*- coding: utf-8 -*-
from __future__ import annotations
from django.contrib import admin
from django.urls import include, path
handler404 = 'hotpocket_backend.apps.ui.views.errors.page_not_found'
handler500 = 'hotpocket_backend.apps.ui.views.errors.server_error'
handler400 = 'hotpocket_backend.apps.ui.views.errors.bad_request'
handler403 = 'hotpocket_backend.apps.ui.views.errors.permission_denied'
urlpatterns = [
path('', include('social_django.urls', namespace='sso')),
path('admin/', admin.site.urls),
path('', include('hotpocket_backend.apps.ui.urls')),
]