Some checks failed
Build and Deploy Backend / build-and-deploy (push) Failing after 1m36s
14 lines
316 B
Python
14 lines
316 B
Python
"""
|
|
通知模块URL配置
|
|
"""
|
|
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from .views import NotificationViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register('notifications', NotificationViewSet, basename='notification')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|