machi_cli/lib.rs
1//! Machi CLI - Command line interface for the machi AI agents framework.
2//!
3//! This crate provides command-line tools for interacting with machi agents.
4
5/// Placeholder function (to be implemented).
6pub fn add(left: u64, right: u64) -> u64 {
7 left + right
8}
9
10#[cfg(test)]
11mod tests {
12 use super::*;
13
14 #[test]
15 fn it_works() {
16 let result = add(2, 2);
17 assert_eq!(result, 4);
18 }
19}