5 lines
97 B
Python
5 lines
97 B
Python
from webob import Response, exc
|
|
|
|
def root_view(request):
|
|
return Response("This is the root")
|