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