diff options
| author | 2019-12-12 12:13:24 +0000 | |
|---|---|---|
| committer | 2019-12-12 12:13:24 +0000 | |
| commit | 338936dd54ec02c46ff28ca1772cc7132c22bb18 (patch) | |
| tree | c15ae02477c5195bae292ff749f1ef28fb19a501 | |
| parent | use zip() instead of enumerate() and indexing (diff) | |
| signature | ||
add comment to healthcheck.py about what it's for
| -rw-r--r-- | modules/healthcheck.py | 3 |
1 files changed, 3 insertions, 0 deletions
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") |
