```rs #[event(scheduled)] pub async fn scheduled(_: ScheduledEvent, _: Env, _: ScheduleContext) {

#[event(scheduled)]
pub async fn scheduled(_: ScheduledEvent, _: Env, _: ScheduleContext) {
    // Your normal schedule code here
    console_log!("Hello, world!");
}
Was this page helpful?