You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

7 lines
195 B

  1. import Register from "api/auth/auth";
  2. export default async function handler(req, resp) {
  3. var input = req.body;
  4. var res = await Register.register(input);
  5. resp.status(200).json(res);
  6. }