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')),
|
||
|
]
|