\n\nUpstreamCommitID: 546dfadbf110928dd357a55674ae7beabff8bcee\nUpstreamCommitLink: 546dfadbf1\nUpstreamRepository: https://github.com/sclorg/s2i-python-container
9 lines
207 B
Python
9 lines
207 B
Python
from flask import Flask
|
|
application = Flask(__name__)
|
|
|
|
@application.route('/')
|
|
def hello():
|
|
return b'Hello World from mod_wsgi hosted WSGI application!'
|
|
|
|
if __name__ == '__main__':
|
|
application.run()
|