1/* 2 * Tackler-NG 2023 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6//! Logical filters to combine other filters 7//! 8mod logic_and; 9mod logic_not; 10mod logic_or; 11 12pub use logic_and::TxnFilterAND; 13pub use logic_not::TxnFilterNOT; 14pub use logic_or::TxnFilterOR;