mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: rename folder
This commit is contained in:
parent
01589c6f94
commit
f88b8051f7
@ -1,12 +1,12 @@
|
||||
pub mod attributes;
|
||||
mod delta;
|
||||
mod document;
|
||||
mod interval;
|
||||
mod node_tree;
|
||||
mod ot_str;
|
||||
|
||||
pub use attributes::*;
|
||||
pub use delta::operation::*;
|
||||
pub use delta::*;
|
||||
pub use document::*;
|
||||
pub use interval::*;
|
||||
pub use node_tree::*;
|
||||
pub use ot_str::*;
|
||||
|
@ -2,14 +2,14 @@
|
||||
|
||||
mod node;
|
||||
mod node_serde;
|
||||
mod node_tree;
|
||||
mod operation;
|
||||
mod operation_serde;
|
||||
mod path;
|
||||
mod transaction;
|
||||
mod tree;
|
||||
|
||||
pub use node::*;
|
||||
pub use node_tree::*;
|
||||
pub use operation::*;
|
||||
pub use path::*;
|
||||
pub use transaction::*;
|
||||
pub use tree::*;
|
@ -1,6 +1,5 @@
|
||||
use crate::core::attributes::Attributes;
|
||||
use crate::core::document::path::Path;
|
||||
use crate::core::{NodeBodyChangeset, NodeData};
|
||||
use crate::core::{NodeBodyChangeset, NodeData, Path};
|
||||
use crate::errors::OTError;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::rc::Rc;
|
@ -1,6 +1,5 @@
|
||||
use crate::core::attributes::Attributes;
|
||||
use crate::core::document::path::Path;
|
||||
use crate::core::{NodeData, NodeOperation, NodeTree};
|
||||
use crate::core::{NodeData, NodeOperation, NodeTree, Path};
|
||||
use crate::errors::OTError;
|
||||
use indextree::NodeId;
|
||||
use std::rc::Rc;
|
@ -1,6 +1,5 @@
|
||||
use crate::core::attributes::Attributes;
|
||||
use crate::core::document::path::Path;
|
||||
use crate::core::{Node, NodeBodyChangeset, NodeData, NodeOperation, OperationTransform, Transaction};
|
||||
use crate::core::{Node, NodeBodyChangeset, NodeData, NodeOperation, OperationTransform, Path, Transaction};
|
||||
use crate::errors::{ErrorBuilder, OTError, OTErrorCode};
|
||||
use indextree::{Arena, Children, FollowingSiblings, NodeId};
|
||||
use std::rc::Rc;
|
Loading…
Reference in New Issue
Block a user