15 lines
275 B
TypeScript
Raw Permalink Normal View History

2022-12-02 11:04:17 +08:00
import { Context } from "koa";
import service from "../service/QbService";
const router = {};
/**
*
*/
router["POST /qb/saveQbInfo"] = async function (ctx: Context) {
ctx.body = await service.saveAddress(ctx.request.body);
};
export default router;