No cleaner development history than this exists. It's difficult to methodically design something when you don't yet know what it is you're designing.
13 lines
391 B
TypeScript
13 lines
391 B
TypeScript
import { Repositories } from "../repo";
|
|
import { UpsertClientTestmodeRequest } from "../request/upsertClientTestmode";
|
|
import { UpsertClientTestmodeResponse } from "../response/upsertClientTestmode";
|
|
|
|
export default async function upsertClientTestmode(
|
|
rep: Repositories,
|
|
req: UpsertClientTestmodeRequest
|
|
): Promise<UpsertClientTestmodeResponse> {
|
|
return {
|
|
returnCode: "1",
|
|
};
|
|
}
|