This commit is contained in:
Oha 2025-02-21 16:56:58 +01:00
parent e30fd83a90
commit 174fa3a36f
2 changed files with 4 additions and 0 deletions

3
app.py
View file

@ -3,6 +3,9 @@ from flask import Flask, render_template, request
import os
playback = False
if not os.path.exists("music"):
os.mkdir("music")
app = Flask(__name__)
def audio_player():

View file

@ -20,4 +20,5 @@ button {
}
button:hover {
background-color: #021b9f;
cursor: pointer;
}