game.onl / app.py
ServerX's picture
Update app.py
4521831 verified
raw
history blame contribute delete
253 Bytes
from flask import Flask, render_template_string
app = Flask(__name__)
with open('index.html', 'r') as f:
html_content = f.read()
@app.route('/')
def home():
return render_template_string(html_content)
if __name__ == '__main__':
app.run()