mirror of
https://github.com/Hopiu/django.git
synced 2026-05-01 04:04:54 +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')),
|
|
]
|