mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 19:10:52 +00:00
8 lines
142 B
Python
8 lines
142 B
Python
from django.urls import path
|
|
|
|
from .views import LetterView
|
|
|
|
urlpatterns = [
|
|
path("", LetterView.as_view(), name="letter-list-create"),
|
|
]
|