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 re_path
from . import views
urlpatterns = [
url(r'^$', views.router, name='router'),
url(r'^access$', views.access, name='access'),
]
re_path(r'^$', views.router, name='router'),
re_path(r'^access$', views.access, name='access'),
]