7 lines
124 B
Python
7 lines
124 B
Python
from .views import ArticleView
|
|
from django.urls import path
|
|
|
|
urlpatterns = [
|
|
path('articles/', ArticleView.as_view())
|
|
]
|