mirror of
https://github.com/UofCBaja/BajaCloud.git
synced 2025-06-15 13:14:17 -06:00
13 lines
348 B
Python
13 lines
348 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
# , newtest, getAppointments, selectAppointment
|
|
|
|
|
|
urlpatterns = [
|
|
path("", views.index, name="index"),
|
|
# path("test", newtest.index, name="index"),
|
|
# path("getSchedule", getAppointments.index, name="index"),
|
|
# path("postSelectAppointment", selectAppointment.index, name="index"),
|
|
]
|