20 lines
531 B
Rust
20 lines
531 B
Rust
//! Hero Supervisor - Actor management for the Hero ecosystem.
|
|
//!
|
|
//! See README.md for detailed documentation and usage examples.
|
|
|
|
pub mod supervisor;
|
|
pub mod builder;
|
|
pub mod error;
|
|
pub mod openrpc;
|
|
pub mod auth;
|
|
pub mod store;
|
|
|
|
// Re-export job client for convenience
|
|
pub use hero_job_client as job_client;
|
|
|
|
// Re-export main types for convenience
|
|
pub use supervisor::Supervisor;
|
|
pub use builder::SupervisorBuilder;
|
|
pub use error::{SupervisorError, SupervisorResult};
|
|
pub use hero_job::{Job, JobBuilder, JobStatus, JobError};
|