mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-15 10:05:21 +00:00
17 lines
321 B
Python
17 lines
321 B
Python
"""
|
|
web_admin urls file
|
|
"""
|
|
# django imports
|
|
from django.urls import path, include
|
|
from rest_framework import routers
|
|
|
|
from web_admin.views import ArticleViewSet
|
|
|
|
router = routers.SimpleRouter()
|
|
|
|
router.register('article', ArticleViewSet, basename='article')
|
|
|
|
urlpatterns = [
|
|
path('api/v1/', include(router.urls)),
|
|
]
|