view index.fcgi @ 108:cffd95813b82

add myrss2
author paulo
date Sun, 24 May 2020 00:22:05 -0700
parents
children
line source
1 #!/usr/bin/env python
3 from flup.server.fcgi import WSGIServer
5 from index_app import app
8 WSGIServer(app).run()