agentlink-core 0.1.0

AgentLink SDK Core - Platform agnostic core library
Documentation
//! Protocol Types
//!
//! This module contains all the data structures for HTTP API and MQTT events.
//! These types are platform-agnostic and used across all SDK implementations.

pub mod auth;
pub mod conversation;
pub mod events;
pub mod friend;
pub mod message;
pub mod user;

// Re-export all protocol types
pub use auth::*;
pub use conversation::*;
pub use events::*;
pub use friend::*;
pub use message::*;
pub use user::*;