This commit is contained in:
2024-12-21 21:56:15 +09:00
parent 1e64a432ab
commit c535a51953
42 changed files with 1069 additions and 0 deletions

14
scheduler/urls.py Normal file
View File

@@ -0,0 +1,14 @@
from django.urls import path
from django.http import HttpResponse
def placeholder_view(request):
"""
Заглушка для URL-адресов приложения scheduler.
"""
return HttpResponse("Это заглушка для приложения scheduler.")
app_name = "scheduler"
urlpatterns = [
path("", placeholder_view, name="scheduler_placeholder"),
]