1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use fluvio_controlplane_metadata::tableformat::*;

mod convert {

    use crate::{DeletableAdminSpec, CreatableAdminSpec};

    use crate::AdminSpec;
    use super::TableFormatSpec;

    impl AdminSpec for TableFormatSpec {}

    impl CreatableAdminSpec for TableFormatSpec {}

    impl DeletableAdminSpec for TableFormatSpec {
        type DeleteKey = String;
    }
}