11//! The five standard cron expression fields.
22
3- use hercules :: JsonSchema ;
3+ use hercules_sdk :: JsonSchema ;
44use serde:: { Deserialize , Serialize } ;
55
6- #[ hercules :: data_type(
6+ #[ hercules_sdk :: data_type(
77 identifier = "CRON_MINUTE" ,
88 name( en_US = "Cron Minute" ) ,
99 display_message( en_US = "Cron Minute" ) ,
@@ -18,7 +18,7 @@ pub struct CronMinute(
1818 pub String ,
1919) ;
2020
21- #[ hercules :: data_type(
21+ #[ hercules_sdk :: data_type(
2222 identifier = "CRON_HOUR" ,
2323 name( en_US = "Cron Hour" ) ,
2424 display_message( en_US = "Cron Hour" ) ,
@@ -33,7 +33,7 @@ pub struct CronHour(
3333 pub String ,
3434) ;
3535
36- #[ hercules :: data_type(
36+ #[ hercules_sdk :: data_type(
3737 identifier = "CRON_DAY_OF_MONTH" ,
3838 name( en_US = "Cron Day of Month" ) ,
3939 display_message( en_US = "Cron Day of Month" ) ,
@@ -48,7 +48,7 @@ pub struct CronDayOfMonth(
4848 pub String ,
4949) ;
5050
51- #[ hercules :: data_type(
51+ #[ hercules_sdk :: data_type(
5252 identifier = "CRON_MONTH" ,
5353 name( en_US = "Cron Month" ) ,
5454 display_message( en_US = "Cron Month" ) ,
@@ -64,7 +64,7 @@ pub struct CronMonth(
6464 pub String ,
6565) ;
6666
67- #[ hercules :: data_type(
67+ #[ hercules_sdk :: data_type(
6868 identifier = "CRON_DAY_OF_WEEK" ,
6969 name( en_US = "Cron Day of Week" ) ,
7070 display_message( en_US = "Cron Day of Week" ) ,
0 commit comments