lib/handler.py
changeset 7 d6a8258bd90e
child 8 0ce1f471e9d7
equal deleted inserted replaced
6:5565d94da522 7:d6a8258bd90e
       
     1 """
       
     2     The actual application behaviour, i.e. generating a Response from a Request :)
       
     3 """
       
     4 
       
     5 import http, page
       
     6 
       
     7 def handle_request (request) :
       
     8     """
       
     9         Take the Request, and return a Response
       
    10     """
       
    11 
       
    12     return http.Response("Hello World")
       
    13