Divyanshu04's picture
Test
5b512a0
raw
history blame contribute delete
110 Bytes
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return {'hei': "you success"}