]> Untitled Git - web-gallery.git/blob - app/app.py
c4d55bd4ef7aa0a74d484dd3045644c9c0e6e5fb
[web-gallery.git] / app / app.py
1 from flask import Flask, render_template
2
3 app = Flask(__name__)
4
5 @app.route('/')
6 def customer():
7     return render_template('hello.html')