style(backend): biome format — organize imports + spacing (live-speaker/redis-bridge/voice.service)

This commit is contained in:
asepharyana
2026-08-07 10:49:16 +07:00
parent 9f91155944
commit 7575a701bd
3 changed files with 3 additions and 6 deletions
@@ -80,4 +80,4 @@ export function getSpeakingSpeakers(): LiveSpeaker[] {
/** Drop all tracked speakers (used on backend restart). */
export function resetLiveSpeakers(): void {
speakers.clear();
}
}
@@ -15,10 +15,7 @@ import {
VOICE_STATUS_KEY,
} from "../../shared/index.js";
import { publishCommand, readRedisStatus } from "../../shared/redis/index.js";
import {
getActiveSpeakers,
type LiveSpeaker,
} from "./live-speaker.js";
import { getActiveSpeakers, type LiveSpeaker } from "./live-speaker.js";
const logger = createChildLogger("voice.service");