pipeline_rpc/lib.rs
1pub mod api;
2pub mod error;
3pub mod handlers;
4
5pub use api::RpcServer;
6pub use error::{RpcError, RpcResult};
7pub use handlers::{PipelineHandler, UserHandler};
8
9// Re-export types needed by clients
10pub use pipeline_service;
11pub use pipeline_service::pipeline::{ExecutionEvent, Pipeline, StepStatus};