Первый коммит

This commit is contained in:
greyjoy
2026-07-31 00:49:40 +04:00
parent 618d5b3a65
commit b53aa305e8
20 changed files with 753 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from django.urls import path
from . import views
app_name = "consultations"
urlpatterns = [
path("", views.home, name="home"),
]