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