mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-15 03:46:24 +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())
|
||
|
]
|