6 lines
183 B
TypeScript
Raw Normal View History

2021-06-11 17:46:26 +08:00
import { ApiCall } from "tsrpc";
import { ReqTest, ResTest } from "../shared/protocols/PtlTest";
export async function ApiTest(call: ApiCall<ReqTest, ResTest>) {
call.succ({});
}