notebook_types/
lib.rs

1mod v0;
2
3pub mod current {
4    // this should always track the latest version, and is the only version
5    // that is exported from notebook-types
6    pub use crate::v0::*;
7}