LATE.IO2 / index.html
AIEONE
Initial commit syncing local server with Hugging Face Space
490ec84
from flask import Flask, send_from_directory
app = Flask(__name__, static_folder='static', static_url_path='')
@app.route('/')
def index():
return send_from_directory(app.static_folder, 'index.html')