aboutsummaryrefslogtreecommitdiff
path: root/modules/healthcheck.py
blob: 0cf2c72b8da20f182598198c9e1f48bd653e658d (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#--require-config healthcheck-url

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")
    def ten_minutes(self, event):
        utils.http.request(self.bot.config["healthcheck-url"])