Commit 69442062 authored by 何娜's avatar 何娜

Delete sign.js

parent 7649ad97
const signAPI=require('../services/ValidationAPI');
module.exports={
async getToken(ctx){
try{
console.log(ctx.request.body)
let tokenObj= await signAPI.getToken(ctx.request.body);
ctx.body=tokenObj
}catch (err){
console.error(err)
ctx.body={code:-1,msg:"服务出错"}
}
},
};
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment