//! The Golang Templating Language for Rust.
//!
//! ## Example
//! ```rust
//! use gtmpl;
//!
//! let output = gtmpl::template("Finally! Some {{ . }} for Rust", "gtmpl");
//! assert_eq!(&output.unwrap(), "Finally! Some gtmpl for Rust");
//! ```
pub use crateTemplate;
pub use crateContext;
pub use Func;
pub use FuncError;
pub use from_value;
pub use TemplateError;
pub use Value;