HJ_Server/src/api_o2s/games/Apideploy.ts
2023-12-13 20:51:17 +08:00

7 lines
237 B
TypeScript

import { ApiCall } from "tsrpc";
import { Reqdeploy, Resdeploy } from "../../monopoly/protocols/games/Ptldeploy";
export default async function (call: ApiCall<Reqdeploy, Resdeploy>) {
// TODO
call.error('API Not Implemented');
}