Initial Commit

This commit is contained in:
2025-08-18 21:04:22 +05:30
commit f6ebcb570a
32 changed files with 521 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
]