7 lines
237 B
TypeScript
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');
|
|
} |