1//! Built-in plugins that ship with the crate. 2//! 3//! These demonstrate the Plugin trait and handle common use cases. 4//! Users can implement their own plugins for custom storage backends. 5 6pub mod stdout; 7pub mod ndjson;