mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 08:56:52 +00:00
9 lines
239 B
Python
9 lines
239 B
Python
from django.urls import path
|
|
|
|
from .views import LetterView
|
|
|
|
urlpatterns = [
|
|
path("", LetterView.as_view(), name="letter-list-create"),
|
|
path("<str:public_id>/", LetterView.as_view(), name="letter-create-retrieve-update-delete"),
|
|
]
|