···66mod poll;
77mod weekly;
8899-pub use backfill::week_to_pages;
99+pub use backfill::backfill;
1010pub use client::CLIENT;
1111pub use plc_pg::Db;
1212pub use poll::{get_page, poll_upstream};
1313-pub use weekly::{Week, pages_to_weeks};
1313+pub use weekly::{BundleSource, FolderSource, HttpSource, Week, pages_to_weeks, week_to_pages};
14141515pub type Dt = chrono::DateTime<chrono::Utc>;
16161717/// One page of PLC export
1818///
1919-/// Expected to have up to around 1000 lines of raw json ops
1919+/// plc.directory caps /export at 1000 ops; backfill tasks may send more in a page.
2020#[derive(Debug)]
2121pub struct ExportPage {
2222 pub ops: Vec<String>,