GIF89a
import mongoose from "mongoose";
const otpSchema = new mongoose.Schema({
mobile: {
type: String,
required: true
},
otp: {
type: String,
}
})
const OTPModel = mongoose.model('OTP', otpSchema);
export default OTPModel;