mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-18 20:21:35 +00:00
13 lines
298 B
Python
13 lines
298 B
Python
from django.urls import path
|
|
from .views import index
|
|
|
|
urlpatterns = [
|
|
path('', index),
|
|
path('home/', index),
|
|
path('login/', index),
|
|
path('make/', index),
|
|
path('book/', index),
|
|
path('order/<int:orderId>', index),
|
|
path('wait/', index),
|
|
path('currencies/',index)
|
|
] |