#[derive(Debug, thiserror::Error)]
pub enum Error {
#[error("Invalid context passed to template. Expected a map, got {0:?}")]
InvalidContext(serde_json::Value),
#[error(transparent)]
LiquidError(#[from] liquid::Error),
#[error("Liquid templates do not support u64 values as of right now")]
U64,
}