refactor: reduce responsability of individual parts

This commit is contained in:
2026-07-10 11:24:21 +02:00
parent f4425494f5
commit cb31d4e8af
7 changed files with 156 additions and 119 deletions
+8
View File
@@ -0,0 +1,8 @@
export enum CronType {
ONE_TIME = 1,
EVERY_DAY = 2,
EVERY_WEEK = 3,
EVERY_MONTH = 4,
EVERY_YEAR = 5,
SPECIFIC = 6,
}