mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-05 14:00:09 +00:00
7 lines
172 B
Python
7 lines
172 B
Python
from django.urls import path
|
|
from .views import MakeOrder, OrderView
|
|
|
|
urlpatterns = [
|
|
path('make/', MakeOrder.as_view()),
|
|
path('order/', OrderView.as_view()),
|
|
] |