move repos into monorepo
This commit is contained in:
19
bin/supervisor/src/lib.rs
Normal file
19
bin/supervisor/src/lib.rs
Normal file
@@ -0,0 +1,19 @@
|
||||
//! 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};
|
||||
Reference in New Issue
Block a user