1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
mod create;
mod delete;
mod list;
mod watch;
mod metadata;

// backward compatibility with classic protocol. this should go away once we deprecate classic
pub mod classic;

pub use create::*;
pub use delete::*;
pub use list::*;
pub use watch::*;
pub use metadata::*;

pub(crate) const COMMON_VERSION: i16 = 14; // from now, we use a single version for all objects
pub(crate) const DYN_OBJ: i16 = 11; // version indicate dynamic object

#[cfg(test)]
mod test;