15 lines
388 B
Python
15 lines
388 B
Python
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"),
|
|
]
|