Add the skeletons for the objects.

This commit is contained in:
Tom Alexander
2023-10-27 17:48:19 -04:00
parent 23713a934c
commit b0ac14ee58
54 changed files with 1326 additions and 25 deletions

View File

@@ -0,0 +1,15 @@
use crate::error::CustomError;
use super::registry::Registry;
#[derive(Debug)]
pub(crate) struct IItalic {}
impl IItalic {
pub(crate) async fn new<'parse>(
registry: &mut Registry<'parse>,
original: &organic::types::Italic<'parse>,
) -> Result<IItalic, CustomError> {
Ok(IItalic {})
}
}