2010-05-30 14:36:06 -04:00

13 lines
146 B
Python

# Run with:
#
# $ python ittyapp.py
#
from itty import *
@get('/')
def index(request):
return 'Hello World!'
run_itty(server='gunicorn')