Files
msa-django-blog/blog/urls.py
2025-04-22 18:52:46 +09:00

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'),
]