Add keyword and as no-op.

This commit is contained in:
Tom Alexander
2023-10-27 16:09:44 -04:00
parent f9377d7609
commit 5891ac7fb7
8 changed files with 58 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ mod definition;
mod document_element;
mod element;
mod heading;
mod keyword;
mod object;
mod page;
mod paragraph;
@@ -16,6 +17,7 @@ pub(crate) use definition::BlogPost;
pub(crate) use document_element::IDocumentElement;
pub(crate) use element::IElement;
pub(crate) use heading::IHeading;
pub(crate) use keyword::IKeyword;
pub(crate) use object::IObject;
pub(crate) use page::BlogPostPage;
pub(crate) use paragraph::IParagraph;