Files
TestMesa/backend/frontend/urls.py
2024-12-17 13:07:06 -08:00

8 lines
155 B
Python

from django.urls import path
from .views import index
urlpatterns = [
path("", index),
path("login", index),
path("account-creation", index)
]