mirror of
https://github.com/openspug/spug.git
synced 2026-01-18 14:54:28 +00:00
9 lines
177 B
Python
9 lines
177 B
Python
from django.urls import path
|
|
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
path('request/', RequestView.as_view()),
|
|
path('request/<int:r_id>/', RequestDetailView.as_view()),
|
|
]
|