mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
9 lines
320 B
Python
9 lines
320 B
Python
from django.urls import path
|
|
from .views import OrderMakerView, OrderView, UserView, BookView
|
|
|
|
urlpatterns = [
|
|
path('make/', OrderMakerView.as_view()),
|
|
path('order/', OrderView.as_view({'get':'get','post':'take_or_update'})),
|
|
path('usergen/', UserView.as_view()),
|
|
path('book/', BookView.as_view()),
|
|
] |