mirror of
https://github.com/Hopiu/django.git
synced 2026-05-01 20:24:46 +00:00
7 lines
137 B
Python
7 lines
137 B
Python
|
|
from django.conf.urls import url
|
||
|
|
from django.http import HttpResponse
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
url(r'^$', lambda req: HttpResponse('OK')),
|
||
|
|
]
|