Added django_mongo app

This commit is contained in:
Allen
2023-09-23 23:41:16 -05:00
parent fa1eb6de4c
commit 10d30c7d8c
11 changed files with 41 additions and 11 deletions

View File

@ -0,0 +1,5 @@
from django.urls import path
from . import views
urlpatterns = [path('',views.index,name='index'),]