mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-18 06:54:15 +00:00
- Implement Playlist class with create, modify, delete, appendItem, and removeItem - Refactor lyrics endpoints to use video_starts_at instead of sync_audio_at - Improve LRC parsing and timing logic for synced lyrics - Fix track and release data ordering and assignment - Remove unused imports and minor code cleanup
18 lines
465 B
JavaScript
18 lines
465 B
JavaScript
import getData from "./methods/getData"
|
|
import create from "./methods/create"
|
|
import modify from "./methods/modify"
|
|
import deletePlaylist from "./methods/deletePlaylist"
|
|
|
|
import appendItem from "./methods/appendItem"
|
|
import removeItem from "./methods/removeItem"
|
|
|
|
export default class Playlist {
|
|
static get = getData
|
|
static create = create
|
|
static modify = modify
|
|
static delete = deletePlaylist
|
|
|
|
static appendItem = appendItem
|
|
static removeItem = removeItem
|
|
}
|