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
384 B
TypeScript
13 lines
384 B
TypeScript
import { Repositories } from "../repo";
|
|
import { UpsertClientDevelopRequest } from "../request/upsertClientDevelop";
|
|
import { UpsertClientDevelopResponse } from "../response/upsertClientDevelop";
|
|
|
|
export default async function upsertClientDevelop(
|
|
rep: Repositories,
|
|
req: UpsertClientDevelopRequest
|
|
): Promise<UpsertClientDevelopResponse> {
|
|
return {
|
|
returnCode: "1",
|
|
};
|
|
}
|