use interstice_abi::{ModuleSelection, NodeSelection, ReducerTableRef};
pub trait TableRow {
const TABLE_NAME: &'static str;
fn table_ref() -> ReducerTableRef {
ReducerTableRef {
node_selection: NodeSelection::Current,
module_selection: ModuleSelection::Current,
table_name: Self::TABLE_NAME.to_string(),
}
}
}