in src/common/backend/StubbedBackend.ts [12:26]
async read(resourceType: string, id: string): Promise<ApiResponse> {
return Promise.resolve({
statusCode: 200,
body: {
message: "Read succeeded",
resourceType,
id,
},
headers: {
"content-length": "438",
"content-type": "application/json; charset=utf-8",
"last-modified": new Date().toISOString(),
},
});
}