adaptive_pipeline/application/utilities.rs
1// /////////////////////////////////////////////////////////////////////////////
2// Adaptive Pipeline
3// Copyright (c) 2025 Michael Gardner, A Bit of Help, Inc.
4// SPDX-License-Identifier: BSD-3-Clause
5// See LICENSE file in the project root.
6// /////////////////////////////////////////////////////////////////////////////
7
8//! # Application Utilities
9//!
10//! Generic utility modules for application layer patterns and common
11//! functionality.
12
13pub mod generic_result_builder;
14pub mod generic_service_base;
15
16pub use generic_result_builder::*;
17pub use generic_service_base::*;