Files
hackathon-Seatstock/backend/django/seatstock_django/django_mongo/urls.py
2023-09-23 23:41:16 -05:00

6 lines
102 B
Python

from django.urls import path
from . import views
urlpatterns = [path('',views.index,name='index'),]