Skip to main content

unifier/
constants.rs

1//! On-disk layout constants.
2
3pub const CRON: &str = "cron";
4pub const MAILBOX: &str = "mailbox";
5pub const KEYS: &str = "keys";
6pub const CHROOTS: &str = "chroots";
7pub const TICKS: &str = "ticks";
8pub const EVENTS: &str = "events";
9
10/// File under [`TICKS`] recording the latest committed tick number.
11pub const TICK_CURRENT: &str = "current";
12
13/// Separator between cron schedule fields in directory names (minute_hour_dom_mon_dow).
14pub const CRON_FIELD_SEP: char = '_';