|
- #!/usr/bin/python
- # -*- coding: utf-8; tab-width: 4; indent-tabs-mode: nil; -*-
-
- #
- # esempio minimo di controller WSGI
- #
- def application( environ, start_response ):
- start_response( '200 OK', [('content-type', 'text/html')] )
- return [ 'Greetings from pippero' ]
|