namespaces #3

Merged
kleph merged 5 commits from namespaces into master 2020-02-22 03:20:52 +01:00
Showing only changes of commit 453ae87230 - Show all commits

View file

@ -10,6 +10,7 @@ app = Flask(__name__)
@app.route('/')
@app.route('/<int(min=0, max=23):hours>')
@app.route('/<int(min=0, max=23):hours>/<int(min=0, max=59):minutes>')
def index(hours=None, minutes=None):
""" main and only app """