8 lines
102 B
Python
8 lines
102 B
Python
|
from mod_python import apache
|
||
|
|
||
|
def handler(req):
|
||
|
req.write("Hello World!")
|
||
|
return apache.OK
|
||
|
|
||
|
|