v0.6.2: restore hmac import in app.py for callback/API key auth

This commit is contained in:
Troll (Hermes Agent) 2026-08-09 16:21:47 +00:00
parent 0e50908747
commit 55de2ab649
3 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,6 @@
# Theme Song Booth # Theme Song Booth
**Version:** `v0.6.1` **Version:** `v0.6.2`
A Flask web application for running a convention booth where visitors request a custom AI-generated theme song. Operators manage the queue from an admin dashboard, generate Suno prompts, upload MP3 previews, collect payment, and deliver final songs by email. A Flask web application for running a convention booth where visitors request a custom AI-generated theme song. Operators manage the queue from an admin dashboard, generate Suno prompts, upload MP3 previews, collect payment, and deliver final songs by email.

View file

@ -1 +1 @@
0.6.1 0.6.2

1
app.py
View file

@ -30,6 +30,7 @@ Admin routes:
# Standard library imports # Standard library imports
import os import os
import hmac
import shutil import shutil
import time import time
from pathlib import Path from pathlib import Path