| 17 | |
| 18 | |
| 19 | class Server: |
| 20 | def __call__(self, env, sr): |
| 21 | body = "Hello World!" |
| 22 | status = "200 OK" |
| 23 | headers = [ |
| 24 | ("Cache-Control", "max-age=%i" % (60 * 10)), |
| 25 | ("Content-Type", "text/plain"), |
| 26 | ] |
| 27 | sr(status, headers) |
| 28 | return body |
| 29 | |
| 30 | |
| 31 | def start_server(): |
no outgoing calls
no test coverage detected
searching dependent graphs…