class SourceModel { constructor() { this.name = ""; } getName() { return this.name; } search(keywords) { return { source_name: "", name: "", music_url: "", lyric_url: "", } } } module.exports = { SourceModel }