const stroge = multer.diskStorage({
    destination : function(req,file,cb){
        cb(null,**URL**)
    },
    filename : function(req,file,cb){
        cb(null,'/home/abhishek/Desktop/uplode/')
    }
})
console.log(path);
const upload = multer({ storage: stroge });
i need to pass URL path in destination http://localhost:8000/uploads/image.png
