mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-02-23 06:28:15 +08:00
10 lines
239 B
Python
10 lines
239 B
Python
from django.urls import path
|
|
from .views import (
|
|
NotificationListView,
|
|
NotificationDeleteView
|
|
)
|
|
|
|
urlpatterns = [
|
|
path("list/", NotificationListView.as_view()),
|
|
path("delete/<int:pk>/", NotificationDeleteView.as_view()),
|
|
]
|