local changes

This commit is contained in:
usmannasir
2024-08-04 23:54:32 +05:00
parent f500809452
commit b56838b51c
44 changed files with 1346 additions and 1000 deletions

View File

@@ -1,7 +1,7 @@
from django.conf.urls import url
from django.urls import path
from . import views
urlpatterns = [
url(r'^$', views.terminal, name='terminal'),
url(r'^restart$', views.restart, name='restart'),
]
path('', views.terminal, name='terminal'),
path('restart/', views.restart, name='restart'),
]