GIF89a
import mongoose from "mongoose";
const youtubeSchema = new mongoose.Schema({
channelName: {
type: String
},
channelLink: {
type: String
},
channelThumbnail: {
type: String
},
}, { timestamps: true })
const YoutubeModel = mongoose.model('Youtube', youtubeSchema)
export default YoutubeModel;