|
from django.urls import path,include
|
|
from .views import ArticleViewSet
|
|
from rest_framework import routers
|
|
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register('article', ArticleViewSet, basename="article")
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|