Skip to main content

plexus_substrate/activations/mustache/
mod.rs

1//! Mustache activation module
2//!
3//! Provides mustache template rendering as a core plugin for the handle
4//! resolution and rendering system. Other plugins can register their
5//! default templates and use this plugin to render handle values.
6
7mod activation;
8mod storage;
9mod types;
10
11pub use activation::Mustache;
12pub use storage::{MustacheStorage, MustacheStorageConfig};
13pub use types::{MustacheError, MustacheEvent, TemplateInfo};