From d12fb8b322b881b8c9f779d38d72ce119732f9b3 Mon Sep 17 00:00:00 2001 From: Coleman McFarland Date: Mon, 11 Nov 2024 19:02:08 -0500 Subject: [PATCH] Add repsonse to HEAD request for monitoring software --- lib/Routes.pm6 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Routes.pm6 b/lib/Routes.pm6 index eebda84..7829b06 100644 --- a/lib/Routes.pm6 +++ b/lib/Routes.pm6 @@ -20,6 +20,8 @@ sub routes() is export { template-location 'templates'; route { + http 'HEAD', -> { + } get -> { template 'index.crotmp'; }