12 lines
258 B
Python
12 lines
258 B
Python
from django.urls import path
|
|
from django.http import HttpResponse
|
|
|
|
app_name = 'settings'
|
|
|
|
def placeholder_view(request):
|
|
return HttpResponse("Placeholder for settings app.")
|
|
|
|
urlpatterns = [
|
|
path('', placeholder_view, name='settings_placeholder'),
|
|
]
|