mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-22 13:19:02 +00:00
12 lines
248 B
Python
12 lines
248 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),
|
|
]
|