mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 10:56:24 +00:00
12 lines
264 B
Python
12 lines
264 B
Python
from django.urls import path
|
|
from .views import index
|
|
|
|
urlpatterns = [
|
|
path('', index),
|
|
path('info/', index),
|
|
path('login/', index),
|
|
path('make/', index),
|
|
path('book/', index),
|
|
path('order/<int:orderId>', index),
|
|
path('wait/', index),
|
|
] |