summaryrefslogtreecommitdiff
path: root/lib/healthcheck.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/healthcheck.ts')
-rw-r--r--lib/healthcheck.ts18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/healthcheck.ts b/lib/healthcheck.ts
new file mode 100644
index 0000000..3ecc0eb
--- /dev/null
+++ b/lib/healthcheck.ts
@@ -0,0 +1,18 @@
+import {
+ TraceUtil,
+ IEither,
+ ITraceable,
+ HealthChecker,
+ HealthCheckInput,
+ HealthCheckOutput,
+ ServerTrace,
+ Either,
+} from '@emprespresso/pengueno';
+
+export const healthCheck: HealthChecker = (
+ input: ITraceable<HealthCheckInput, ServerTrace>,
+): Promise<IEither<Error, HealthCheckOutput>> =>
+ input
+ .flatMap(TraceUtil.withFunctionTrace(healthCheck))
+ .move(Promise.resolve(Either.right<Error, HealthCheckOutput>(HealthCheckOutput.YAASSSLAYQUEEN)))
+ .get();