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