refactor, add cron types, reinstante module loader

This commit is contained in:
Jacob Nguyen
2024-05-14 12:01:18 -05:00
parent 0a05cbba3f
commit 880311f08c
17 changed files with 60 additions and 233 deletions

View File

@@ -48,16 +48,17 @@ export enum EventType {
/**
* The EventType for handling discord events
*/
Discord = 1,
Discord,
/**
* The EventType for handling sern events
*/
Sern = 2,
Sern,
/**
* The EventType for handling external events.
* Could be for example, `process` events, database events
*/
External = 3,
External,
Cron
}
/**