mirror of
https://github.com/koel/koel
synced 2024-12-21 10:03:10 +00:00
11 lines
185 B
JavaScript
11 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: []
|
|
};
|