11 lines
213 B
Rust
11 lines
213 B
Rust
|
use crate::error::CustomError;
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
pub(crate) struct Section {}
|
||
|
|
||
|
impl Section {
|
||
|
pub(crate) fn new(section: &organic::types::Section<'_>) -> Result<Section, CustomError> {
|
||
|
todo!()
|
||
|
}
|
||
|
}
|