Agri-App / app.py
ajeetkumar01's picture
added the app.py file
b4c8cbd verified
raw
history blame
186 Bytes
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)