removed tasks
All checks were successful
release-tag / release-image (push) Successful in 22s

This commit is contained in:
moriese 2025-01-15 20:24:04 +01:00
parent f6bbe10bb9
commit eabe37c280
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ import { CronJob } from "cron";
import { GreetingService } from "actions/greeting/greeting.service";
const greetingService = new GreetingService();
/*
new CronJob(
"0 30 6 * * *", // cronTime
async () => {
@ -24,7 +24,7 @@ new CronJob(
null,
true,
"Europe/Berlin",
);
);*/
new CronJob(
"0 0 0 1 1 *",

View File

@ -2,7 +2,7 @@ import { CronJob } from "cron";
import { WaterMeService } from "actions/waterMe/waterMe.service";
const waterMeService = new WaterMeService();
/*
new CronJob(
"0 0 20 * * *", // cronTime
async () => {
@ -12,5 +12,5 @@ new CronJob(
null, // onComplete
true, // start
"Europe/Berlin", // timeZone
);
);*/
// job.start() is optional here because of the fourth parameter set to true.