import Profile from "../models/profile.js" import bcrypt from "bcryptjs"; import jwt from 'jsonwebtoken' import config from "../config.js" const getimage = async (req, res) => { const defaultimg = 'https://t1.daumcdn.net/cfile/tistory/2761AA4558A05CBE2A' // const newImg = await new Profile({ // defaultimg // //required를 하였기 때문에 이중 하나라도 없으면 에러 발생 // }).save() } export default { getimage }