kaiba 0.5.0

Kaiba domain library - Core types and interfaces for AI persona system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Ports (Interfaces)
//!
//! Abstract interfaces that define how the domain layer
//! interacts with external systems (repositories, services, integrations).
//!
//! Implementations of these traits live in the infrastructure layer.

pub mod integration;
pub mod repositories;
pub mod services;
pub mod webhook;

// Re-exports
pub use integration::*;
pub use repositories::*;
pub use services::*;
pub use webhook::*;