Skip to content
Snippets Groups Projects
Commit ecf43d46 authored by Éloïs's avatar Éloïs
Browse files

[fix] kv_typed: *DbTxRw must be exposed

parent 81b8827c
No related branches found
No related tags found
1 merge request!1359Ref/gva indexer/unified db tx
...@@ -35,7 +35,7 @@ macro_rules! db_schema { ...@@ -35,7 +35,7 @@ macro_rules! db_schema {
} }
)* )*
// Inner module used to hide internals types that must not be exposed on public api // Inner module used to hide internals types that must not be exposed on public api
pub use __inner::{[<$db_name Db>], [<$db_name DbRo>], [<$db_name DbWritable>], [<$db_name DbReadable>]}; pub use __inner::{[<$db_name Db>], [<$db_name DbRo>], [<$db_name DbWritable>], [<$db_name DbReadable>], [<$db_name DbTxRw>]};
mod __inner { mod __inner {
use super::*; use super::*;
use kv_typed::prelude::*; use kv_typed::prelude::*;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment