mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-15 01:55:21 +00:00
19 lines
385 B
Python
19 lines
385 B
Python
"""
|
|
notifications urls file
|
|
"""
|
|
# django imports
|
|
from django.urls import path, include
|
|
from rest_framework import routers
|
|
|
|
# local imports
|
|
from notifications.views import NotificationViewSet
|
|
|
|
# initiate router
|
|
router = routers.SimpleRouter()
|
|
|
|
router.register('notifications', NotificationViewSet, basename='notifications')
|
|
|
|
urlpatterns = [
|
|
path('api/v1/', include(router.urls)),
|
|
]
|