Add the skeletons for the elements.
This commit is contained in:
15
src/intermediate/table.rs
Normal file
15
src/intermediate/table.rs
Normal file
@@ -0,0 +1,15 @@
|
||||
use crate::error::CustomError;
|
||||
|
||||
use super::registry::Registry;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub(crate) struct ITable {}
|
||||
|
||||
impl ITable {
|
||||
pub(crate) async fn new<'parse>(
|
||||
registry: &mut Registry<'parse>,
|
||||
original: &organic::types::Table<'parse>,
|
||||
) -> Result<ITable, CustomError> {
|
||||
Ok(ITable {})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user