import { Digest } from "stacker";// At 9am every weekday this digest will be sentconst daily = new Digest("daily", { cron: "0 9 * * 1-5", email: "work@work.com",});// Every hour between 9am and 5pm every weekday this digest will be sentconst important = new Digest("important", { cron: "0 9-17 * * 1-5", email: "work@work.com",});