buffer_clone_backend/api/urls.py
2024-03-11 00:34:18 +02:00

8 lines
164 B
Python

from django.urls import path
from .views import PostView
urlpatterns = [
path('post/', PostView.as_view()),
path('post/<int:pk>/', PostView.as_view()),
]