mirror of
https://github.com/koel/koel
synced 2024-12-12 13:42:27 +00:00
14 lines
221 B
JavaScript
14 lines
221 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: []
|
|
}
|