Cron for autoreorder

How to change Item reorder daily into 5 mins? added below code in hooks but not working
scheduler_events = {
“cron”: {
“0/5 * * * *”: [
“erpnext.stock.reorder_item.reorder_item”
]
}
}

Hi @python_a,

Please check the syntax and try it.

scheduler_events = {
    "cron": {
        "*/5 * * * *": [
            "your_app_name.hooks.daily_cron"
        ]
    }
}

Thank You!