mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-06-08 05:29:52 +00:00
18 lines
386 B
Python
18 lines
386 B
Python
from django.urls import path, include
|
|
|
|
from . import api
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
*[
|
|
path(p, views.IndexView.as_view())
|
|
for p in ['', 'login', 'app', 'about', 'about/features']
|
|
],
|
|
|
|
path('app-dist/<version>/<path:path>', views.AppDistView.as_view()),
|
|
path('terminal', views.TerminalView.as_view()),
|
|
|
|
path('', include(api.urlpatterns)),
|
|
]
|