1 2 3 4 5 6 7 8 9 10
// SPDX-License-Identifier: LGPL-3.0-only // Copyright (c) 2024 Shane Utt //! Condition evaluation for gating filter execution on request/response attributes. mod request; mod response; pub use request::should_execute; pub use response::{should_execute_response, should_execute_response_ref};