Start main app

This commit is contained in:
Nyymix 2025-08-09 18:25:13 +03:00
parent eab48b216e
commit 64576a7f09
10 changed files with 31 additions and 1 deletions

7
main/urls.py Normal file
View file

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