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