hexser 0.4.7

Zero-boilerplate hexagonal architecture with graph-based introspection
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Result type module for hex crate.
//!
//! This module provides the standard Result type alias used throughout
//! the hex crate, making error handling consistent and ergonomic.
//!
//! Revision History
//! - 2025-10-01T00:00:00Z @AI: Initial Phase 1 result module structure.

pub mod hex_result;

pub use hex_result::HexResult;