2017-06-02 20:10:27 -04:00

7 lines
137 B
Python

from django.conf.urls import url
from django.http import HttpResponse
urlpatterns = [
url(r'^$', lambda req: HttpResponse('OK')),
]