app.py 397 B

123456789101112131415161718
  1. from flask import (
  2. Flask, redirect, render_template, request, flash, jsonify, send_file
  3. )
  4. from contacts_model import Contact, Archiver
  5. # ========================================================
  6. # Flask App
  7. # ========================================================
  8. app = Flask(__name__)
  9. app.secret_key = b'hypermedia rocks'
  10. @app.route("/")
  11. def index():
  12. return redirect("/contacts")