2013-06-04 13:55:20 +08:00
|
|
|
from django.http import HttpResponse
|
2018-12-08 06:52:28 +08:00
|
|
|
from django.urls import path
|
2013-06-04 13:55:20 +08:00
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
2018-12-08 06:52:28 +08:00
|
|
|
path('', lambda req: HttpResponse('example view')),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|