Commit f653933c authored by priyaranjan.dr's avatar priyaranjan.dr

Add new file

parent 1e114ba7
Pipeline #12308 failed with stage
in 0 seconds
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index() :
return ('hello')
if __name__ == '__main__':
app.run(host='0.0.0.0')
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment