Miroca_Server

This commit is contained in:
Victor Alexandrovich Tsyrenschikov
2026-01-02 15:07:56 +05:00
parent c9ae31bc3d
commit 0df2ccb03c
8 changed files with 194 additions and 4 deletions

6
home/urls.py Normal file
View File

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