qorzen_oxide/types.rs
1use serde_json::Value;
2use std::collections::HashMap;
3use uuid::Uuid;
4
5/// Unique identifier for managers, tasks, events, etc.
6pub type Id = Uuid;
7
8/// Generic metadata container
9pub type Metadata = HashMap<String, Value>;
10
11/// Correlation ID for tracking related operations
12pub type CorrelationId = Uuid;