I literally have this now ```JavaScript export con...
# general
s
I literally have this now
Copy code
JavaScript
export const attemptRefreshSession = async (_res: Response) => {
  return true;
};
export const refresh: Route = {
  method: 'post',
  path: '/refresh',
  secure: false,
  handler: [
    async (_req, res) => {
      const success = await attemptRefreshSession(res);
      return res
        .status(201)
        .send({ success, message: 'Successful Session Refresh.' });
    },
  ],
};