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