mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 02:46:28 +00:00
16 lines
373 B
Python
16 lines
373 B
Python
from django.urls import path
|
|
|
|
from .views import basic, pro
|
|
|
|
urlpatterns = [
|
|
path("", basic, name="basic"),
|
|
path("create/", basic),
|
|
path("garage/", basic),
|
|
path("garage/<token>", basic),
|
|
path("offers/", basic),
|
|
path("order/<shortAlias>/<int:orderId>/", basic),
|
|
path("settings/", basic),
|
|
path("", basic),
|
|
path("pro/", pro, name="pro"),
|
|
]
|