2023-10-24 04:36:08 +00:00
|
|
|
use crate::error::CustomError;
|
|
|
|
|
2023-10-27 18:43:06 +00:00
|
|
|
use super::registry::Registry;
|
|
|
|
|
2023-10-24 04:36:08 +00:00
|
|
|
#[derive(Debug)]
|
2023-10-27 17:05:34 +00:00
|
|
|
pub(crate) struct ISection {}
|
2023-10-24 04:36:08 +00:00
|
|
|
|
2023-10-27 17:05:34 +00:00
|
|
|
impl ISection {
|
2023-10-27 18:43:06 +00:00
|
|
|
pub(crate) fn new(
|
|
|
|
registry: &mut Registry<'_>,
|
|
|
|
section: &organic::types::Section<'_>,
|
|
|
|
) -> Result<ISection, CustomError> {
|
2023-10-27 17:05:34 +00:00
|
|
|
Ok(ISection {})
|
2023-10-24 04:36:08 +00:00
|
|
|
}
|
|
|
|
}
|