robosats/frontend/urls.py
2022-03-05 09:32:27 -08:00

11 lines
220 B
Python

from django.urls import path
from .views import index
urlpatterns = [
path("make/", index),
path("book/", index),
path("order/<int:orderId>", index),
path("", index),
path("ref/<refCode>", index),
]