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