//! Nomy Data Models
//!
//! This crate provides data model definitions for Nomy wallet analysis data processing.
//! These models are shared across multiple services and are generated from Python Pydantic models.
/// Re-export all models for convenience
pub use *;
/// Error types for the crate
/// Result type for the crate
pub type Result<T> = Result;
/// Version of the crate
pub const VERSION: &str = env!;