garbage/src/ops/mod.rs
2020-03-04 00:13:46 -06:00

11 lines
254 B
Rust

//! Operations that garbage can do.
mod empty;
mod list;
mod put;
mod restore;
pub use self::empty::{empty, EmptyOptions};
pub use self::list::{list, ListOptions};
pub use self::put::{put, PutOptions};
pub use self::restore::{restore, RestoreOptions};