diff --git a/autopilot/app.py b/autopilot/app.py index 8b14c51..b1ed486 100644 --- a/autopilot/app.py +++ b/autopilot/app.py @@ -11,6 +11,11 @@ logging.config.dictConfig(LOGGING_CONFIG) app = flask.Flask(__name__) +@app.route('/') +def health(): + return "It works!" + + @app.route('/schedule.ics') def main(): reservations = get_reservations()