예제 #1
0
 def internal_server_error(self, request):
     return Response("<h1>error: %s</h1>" % request.description)
예제 #2
0
	def get(self, request):
		return Response("<h1>hello first response!</h1>")
예제 #3
0
	def delete(self, request):
		return Response("Method is not supported", status=405)