iac-rs 0.0.7

🛰️ IAC Protocol for Inter and Intra Agents Communications.
// Copyright 2026 Mahmoud Harmouch.
//
// Licensed under the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use anyhow::Result;
use async_trait::async_trait;

#[async_trait]
pub trait Network {
    async fn heartbeat(&self);
    async fn broadcast(&self, payload: &str) -> Result<()>;
}

// Copyright 2026 Mahmoud Harmouch.
//
// Licensed under the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.