Demo Update 24

This commit is contained in:
2025-03-30 09:25:03 -04:00
parent e69d9c5da1
commit d818c86463
3 changed files with 784 additions and 804 deletions

View File

@@ -149,6 +149,11 @@ def index():
"""Serve the main interface"""
return render_template('index.html')
@app.route('/voice-chat.js')
def voice_chat_js():
"""Serve the JavaScript for voice chat"""
return app.send_static_file('voice-chat.js')
@socketio.on('connect')
def handle_connect():
"""Handle new client connection"""