app.js 452 字节
Newer Older
1 2 3 4 5
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'
C
CeBkCn 已提交
6
import { getPlaylists } from './component/getPlaylists'
7 8

let api = {
9 10 11 12
  search: search,
  song: song,
  lrc: lrc,
  getArtistAlbums: getArtistAlbums,
C
CeBkCn 已提交
13 14
  getAlbums: getAlbums,
  getPlaylists: getPlaylists
15

16 17
}
export {api}