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