9 lines
178 B
Python
9 lines
178 B
Python
# blog/urls.py
|
|
|
|
from django.urls import path
|
|
from .views import PostListCreateView
|
|
|
|
urlpatterns = [
|
|
path('create/', PostListCreateView.as_view(), name='post-list-create'),
|
|
]
|