mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2026-03-11 09:41:47 +00:00
19 lines
357 B
Python
19 lines
357 B
Python
"""
|
|
web_admin urls file
|
|
"""
|
|
# django imports
|
|
from django.urls import path, include
|
|
from rest_framework import routers
|
|
|
|
# local imports
|
|
from web_admin.views import ArticleViewSet
|
|
|
|
# initiate router
|
|
router = routers.SimpleRouter()
|
|
|
|
router.register('articles', ArticleViewSet, basename='articles')
|
|
|
|
urlpatterns = [
|
|
path('api/v1/', include(router.urls)),
|
|
]
|