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