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 { UpsertClientSettingRequest } from "../request/upsertClientSetting";
|
|
import { UpsertClientSettingResponse } from "../response/upsertClientSetting";
|
|
|
|
export default async function upsertClientSetting(
|
|
rep: Repositories,
|
|
req: UpsertClientSettingRequest
|
|
): Promise<UpsertClientSettingResponse> {
|
|
return {
|
|
returnCode: "1",
|
|
};
|
|
}
|