mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-17 21:40:37 +00:00
12 lines
202 B
Rust
12 lines
202 B
Rust
//! Table manifest service
|
|
pub mod action;
|
|
|
|
use storage::manifest::ManifestImpl;
|
|
|
|
use crate::manifest::action::*;
|
|
|
|
pub type TableManifest = ManifestImpl<TableMetaActionList>;
|
|
|
|
#[cfg(test)]
|
|
mod tests {}
|