ej-config 0.3.0

Configuration structures and utilities for EJ builder configurations.
Documentation
1
2
3
4
5
6
7
//! Common types and utilities.

/// Configuration error type.
pub use crate::error::Error;

/// Configuration result type.
pub type Result<T> = core::result::Result<T, Error>;