mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
14 lines
225 B
JavaScript
14 lines
225 B
JavaScript
import config from '../config';
|
|
import artist from './artist';
|
|
|
|
export default {
|
|
artist,
|
|
id: 0,
|
|
artist_id: 0,
|
|
name: '',
|
|
cover: config.unknownCover,
|
|
playCount: 0,
|
|
length: 0,
|
|
fmtLength: '00:00',
|
|
songs: [],
|
|
};
|