-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96ce116
commit 7288000
Showing
3 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// system file, please don't modify it | ||
|
||
import * as app from "#app" | ||
import logger from "#logger" | ||
|
||
/** | ||
* See the {@link https://ghom.gitbook.io/bot.ts/usage/create-a-listener listener guide} for more information. | ||
*/ | ||
export default new app.Listener({ | ||
event: "ready", | ||
description: "Launch all cron jobs", | ||
async run() { | ||
for (const cron of app.cronList.values()) { | ||
cron.start() | ||
} | ||
|
||
logger.success("All cron jobs launched") | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters