mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 11:26:24 +00:00
13 lines
249 B
Python
13 lines
249 B
Python
from django.urls import path
|
|
|
|
from .views import basic, pro
|
|
|
|
urlpatterns = [
|
|
path("make/", basic),
|
|
path("book/", basic),
|
|
path("order/<int:orderId>", basic),
|
|
path("", basic),
|
|
path("ref/<refCode>", basic),
|
|
path("pro/", pro),
|
|
]
|