mirror of
https://github.com/34892002/edgeKey.git
synced 2026-06-01 14:59:28 +08:00
6 lines
212 B
TypeScript
6 lines
212 B
TypeScript
import { getOrderForQuery } from "../../modules/order/service";
|
|
|
|
export async function onQueryOrder(input: { orderNo: string; queryToken: string }) {
|
|
return getOrderForQuery(input.orderNo, input.queryToken);
|
|
}
|