checkLiveness method

Future<HealthResponse> checkLiveness()

Check liveness (/livez).

Always returns healthy if the server can respond. This endpoint performs no external checks - if we can respond, we're alive.

Implementation

Future<HealthResponse> checkLiveness() async {
  return HealthResponse.alive();
}