mirror of
https://github.com/UofCBaja/BajaCloud.git
synced 2025-07-06 19:17:13 -06:00
feat(django): failure django is not faster than base python, but is WAAAAAYYY EASIER to code in endpoints, and can work with nginx
This commit is contained in:
@ -17,8 +17,12 @@ Including another URLconf
|
||||
|
||||
from django.contrib import admin
|
||||
from django.urls import include, path
|
||||
from . import newtest, getAppointments, selectAppointment
|
||||
|
||||
urlpatterns = [
|
||||
path("polls/", include("polls.urls")),
|
||||
path("admin/", admin.site.urls),
|
||||
path("test", newtest.index, name="index"),
|
||||
path("getSchedule", getAppointments.index, name="index"),
|
||||
path("postSelectAppointment", selectAppointment.index, name="index"),
|
||||
]
|
Reference in New Issue
Block a user