import User from "../models/user.js" import bcrypt from "bcryptjs"; import jwt from 'jsonwebtoken' import config from "../config.js" const getimage = (req, res) => { // 1) 로그인 된 사용자 정보를 가져오기 // 일단 1명으로 해놓고 설정 // let users = await User.find().select('name nickname email password').exec() // return res.json(users) res.send('여기가 프로필이다.') console.log("ddd") //try catch로 오류잡는거 추가해야함 } export default { getimage }