Move notebook cell logic in separate file (#8813)

Small refactor to move cell related logic to it's own file.
This commit is contained in:
Dhruv Manilawala 2023-11-22 09:21:28 -06:00 committed by GitHub
parent 359a68d18f
commit 63a87dda63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 171 additions and 168 deletions

View file

@ -4,6 +4,7 @@ pub use index::*;
pub use notebook::*;
pub use schema::*;
mod cell;
mod index;
mod notebook;
mod schema;