mirror of
https://github.com/django/django.git
synced 2025-08-01 17:42:56 +00:00
6 lines
151 B
Python
6 lines
151 B
Python
from django.conf.urls import url
|
|
from django.http import HttpResponse
|
|
|
|
urlpatterns = [
|
|
url(r'^$', lambda request: HttpResponse('root is here')),
|
|
]
|