mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-05 11:08:56 +08:00
16 lines
366 B
JavaScript
16 lines
366 B
JavaScript
import { search } from './component/search'
|
|
import { song } from './component/song'
|
|
import { lrc } from './component/lrc'
|
|
import { getArtistAlbums } from './component/getArtistAlbums'
|
|
import { getAlbums } from './component/getAlbums'
|
|
|
|
let api = {
|
|
search: search,
|
|
song: song,
|
|
lrc: lrc,
|
|
getArtistAlbums: getArtistAlbums,
|
|
getAlbums: getAlbums
|
|
|
|
}
|
|
export {api}
|