mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
13 lines
146 B
Python
13 lines
146 B
Python
# Run with:
|
|
#
|
|
# $ python ittyapp.py
|
|
#
|
|
|
|
from itty import *
|
|
|
|
@get('/')
|
|
def index(request):
|
|
return 'Hello World!'
|
|
|
|
run_itty(server='gunicorn')
|