Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wiseplat
GitHub Repository: wiseplat/python-code
Path: blob/master/ invest-robot-contest_tinkoff_trading_contest-main/tinkoff_contest/trading_app/urls.py
5929 views
1
from django.urls import path
2
3
from . import views
4
5
urlpatterns = [
6
path('', views.Welcome.as_view(), name='welcome'),
7
path('market/', views.Trading.as_view(), name='trading'),
8
path('sandbox/', views.SandBox.as_view(), name='sandbox'),
9
]
10