// Define the song model const songSchema = new mongoose.Schema({ title: String, artist: String, album: String, lyrics: String, audioFile: String });
// Define the song model const songSchema = new mongoose.Schema({ title: String, artist: String, album: String, lyrics: String, audioFile: String });