start of migration

This commit is contained in:
michalcourson
2026-02-21 11:15:02 -05:00
parent 9af8626dab
commit 8f367c9264
20 changed files with 371 additions and 506 deletions

View File

@ -40,5 +40,14 @@ def recording_delete():
try:
os.remove(filename)
return jsonify({'status': 'success'})
except Exception as e:
return jsonify({'status': 'error', 'message': str(e)}), 400
@recording_bp.route('/playback/start', methods=['POST'])
def playback_start():
print('HTTP: Starting audio playback')
try:
# os.remove(filename)
return jsonify({'status': 'success'})
except Exception as e:
return jsonify({'status': 'error', 'message': str(e)}), 400