Production deployment with zinit config
This commit is contained in:
@@ -171,8 +171,13 @@ pub struct JobStatusResponse {
|
||||
pub completed_at: Option<String>,
|
||||
}
|
||||
|
||||
// Re-export Job types from shared crate
|
||||
pub use hero_job::{Job, JobStatus, JobError, JobBuilder};
|
||||
// Re-export Job types from runner_rust crate (native only)
|
||||
#[cfg(not(target_arch = "wasm32"))]
|
||||
pub use runner_rust::{Job, JobStatus, JobError, JobBuilder, Client, ClientBuilder};
|
||||
|
||||
// WASM-compatible Job types (simplified versions)
|
||||
#[cfg(target_arch = "wasm32")]
|
||||
pub use crate::wasm::{Job, JobStatus, JobError, JobBuilder};
|
||||
|
||||
/// Process status wrapper for OpenRPC serialization (matches server response)
|
||||
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
||||
|
||||
Reference in New Issue
Block a user