use crate::error::CustomError;
#[derive(Debug)]
pub(crate) struct Section {}
impl Section {
pub(crate) fn new(section: &organic::types::Section<'_>) -> Result<Section, CustomError> {
Ok(Section {})
}