Skip to content

Commit

Permalink
chore(probes): add modded/survival dynmaps
Browse files Browse the repository at this point in the history
  • Loading branch information
taskylizard committed Feb 17, 2024
1 parent c2b28e0 commit 3119847
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/probes/configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,20 @@ export const probeConfigs: ProbeConfig[] = [
matchCron: (cron) => cron === cronHourly,
execute: (context) => probeHttp(context, 'https://whoogle.fmhy.net')
},
{
id: 'survival',
title: 'Dynmap (Survival)',
url: 'https://survival.dynmap.fmhy.net',
matchCron: (cron) => cron === cronHourly,
execute: (context) => probeHttp(context, 'https://survival.dynmap.fmhy.net')
},
{
id: 'modded',
title: 'Dynmap (Modded)',
url: 'https://modded.dynmap.fmhy.net',
matchCron: (cron) => cron === cronHourly,
execute: (context) => probeHttp(context, 'https://modded.dynmap.fmhy.net')
},
{
id: 'api',
title: 'API',
Expand Down

0 comments on commit 3119847

Please sign in to comment.