mirror of
https://github.com/koel/koel
synced 2024-12-22 02:23:14 +00:00
12 lines
185 B
JavaScript
12 lines
185 B
JavaScript
|
import config from '../config';
|
||
|
import artist from './artist';
|
||
|
|
||
|
export default {
|
||
|
artist,
|
||
|
id: 0,
|
||
|
artist_id: 0,
|
||
|
name: '',
|
||
|
cover: config.unknownCover,
|
||
|
songs: []
|
||
|
};
|