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