2022-01-01 22:34:23 +00:00
|
|
|
from django.urls import path
|
2022-01-09 14:29:10 +00:00
|
|
|
from .views import MakerView, OrderView, UserView, BookView, InfoView
|
2022-01-01 22:34:23 +00:00
|
|
|
|
|
|
|
urlpatterns = [
|
2022-01-07 18:22:52 +00:00
|
|
|
path('make/', MakerView.as_view()),
|
2022-01-06 20:33:40 +00:00
|
|
|
path('order/', OrderView.as_view({'get':'get','post':'take_update_confirm_dispute_cancel'})),
|
2022-01-08 13:08:03 +00:00
|
|
|
path('user/', UserView.as_view()),
|
2022-01-03 14:27:25 +00:00
|
|
|
path('book/', BookView.as_view()),
|
2022-01-08 13:08:03 +00:00
|
|
|
# path('robot/') # Profile Info
|
2022-01-07 18:22:52 +00:00
|
|
|
path('info/', InfoView.as_view()),
|
2022-01-01 22:34:23 +00:00
|
|
|
]
|