mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 14:19:38 +00:00
7 lines
248 B
TypeScript
7 lines
248 B
TypeScript
import { serverURL } from '../../../src-shared/Paths'
|
|
|
|
export async function getBatchSongDetails(songIds: number[]) {
|
|
const response = await fetch(`https://${serverURL}/api/data/song-versions/${songIds.join(',')}`)
|
|
return await response.json()
|
|
}
|