home.py 297 B

12345678910
  1. from flask import Blueprint, request, jsonify, redirect, url_for, current_app, send_from_directory, make_response
  2. import datetime
  3. import os
  4. import shutil
  5. bp_home = Blueprint('home', __name__)
  6. @bp_home.route('/')
  7. def hello_world():
  8. return redirect(url_for('static', filename='./index.html'))