Skip to main content

v_authorization_impl/
lib.rs

1#[macro_use]
2extern crate log;
3
4pub mod az_lmdb;
5#[cfg(feature = "tt")]
6pub mod az_tarantool;
7#[cfg(feature = "tt")]
8mod runtime_wrapper;
9pub mod az_context;
10mod stat_manager;
11
12pub use az_lmdb::LmdbAzContext;
13#[cfg(feature = "tt")]
14pub use az_tarantool::TarantoolAzContext;
15pub use az_context::AzContext;
16pub use v_authorization;
17