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