expanded package modularity

This commit is contained in:
white
2025-01-15 14:40:57 +00:00
parent 3cfd34ebd7
commit 6d7325ad21
5 changed files with 19 additions and 13 deletions

View File

@@ -1,2 +0,0 @@
FLASK_APP=app.py
FLASK_DEBUG=True

View File

@@ -1,11 +0,0 @@
from flask import Flask, render_template, Response
app = Flask(__name__)
@app.route('/')
def index():
# Main page for the live stream
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)