package monstersirenfetch // SongsResponse is the response of /api/songs. type SongsResponse Response[SongsData] // SongsData is the type of [SongsResponse] data. type SongsData = struct { List []Song `json:"list"` Autoplay string `json:"autoplay"` }