From 338936dd54ec02c46ff28ca1772cc7132c22bb18 Mon Sep 17 00:00:00 2001 From: jesopo Date: Thu, 12 Dec 2019 12:13:24 +0000 Subject: [PATCH] add comment to healthcheck.py about what it's for --- modules/healthcheck.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/healthcheck.py b/modules/healthcheck.py index 0b13af0d..0cf2c72b 100644 --- a/modules/healthcheck.py +++ b/modules/healthcheck.py @@ -2,6 +2,9 @@ from src import ModuleManager, utils +# this module was created for use with https://healthchecks.io/ +# but it can be used for any similar URL-pinging service. + class Module(ModuleManager.BaseModule): @utils.hook("cron") @utils.kwarg("schedule", "*/10")