mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-30 18:04:43 +00:00
9 lines
266 B
Python
9 lines
266 B
Python
""" Django notification urls for tests """
|
|
# -*- coding: utf-8 -*-
|
|
from django.contrib import admin
|
|
from django.urls import include, path
|
|
|
|
urlpatterns = [
|
|
path("admin/", admin.site.urls),
|
|
path("", include("notifications.urls", namespace="notifications")),
|
|
]
|