Skip to content

Commit 2451f07

Browse files
committed
1 parent c732f61 commit 2451f07

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

frontend/src/client/services.ts

+12
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,18 @@ export class UtilsService {
389389
},
390390
})
391391
}
392+
393+
/**
394+
* Health Check
395+
* @returns boolean Successful Response
396+
* @throws ApiError
397+
*/
398+
public static healthCheck(): CancelablePromise<boolean> {
399+
return __request(OpenAPI, {
400+
method: "GET",
401+
url: "/api/v1/utils/health-check/",
402+
})
403+
}
392404
}
393405

394406
export type TDataReadItems = {

0 commit comments

Comments
 (0)