natter/src/intermediate/section.rs

11 lines
224 B
Rust
Raw Normal View History

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