nika 0.20.0

Semantic YAML workflow engine for AI tasks - DAG execution, MCP integration, multi-provider LLM support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Store Module - state management (v0.1)
//!
//! Thread-safe storage for task execution results.
//! Uses DashMap for lock-free concurrent access.
//!
//! Key types:
//! - `DataStore`: Central storage for task results
//! - `TaskResult`: Execution result with status and output
//! - `TaskStatus`: Success or failure status

mod datastore;

// Re-export all public types
pub use datastore::{DataStore, TaskResult, TaskStatus};