clark_agent/plugins/mod.rs
1//! Built-in plugins shipped with `clark-agent`.
2//!
3//! These cover safety-net concerns that every product variant needs and
4//! that would otherwise have to be re-implemented per call-site. Each
5//! plugin is a regular [`Plugin`](crate::plugin::Plugin) implementation —
6//! nothing magic about its placement here.
7
8pub mod opening_gate;
9
10pub use opening_gate::OpeningGate;