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.
 
 

8 line
250 B

  1. import Transaction from "api/transaction/transaction";
  2. export default async function handler(req, resp) {
  3. var input = req.body;
  4. var res = await Transaction.newTransactionHonda(input);
  5. console.log(input);
  6. resp.status(200).json(res);
  7. }