natter/src/intermediate/section.rs

16 lines
308 B
Rust
Raw Normal View History

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<ISection, CustomError> {
Ok(ISection {})
}
}