const mongoose = require('mongoose');

const dbURL = 'mongodb://localhost:27017/wbd3fap';
const driverSchema = new mongoose.Schema({
  data : [{type : Number}]
});

const Driver = mongoose.model('Driver', driverSchema);
module.exports = Driver;