solverforge_service/lib.rs
1//! SolverForge Service - JVM lifecycle management
2//!
3//! This crate manages the lifecycle of the solverforge-wasm-service Java process,
4//! providing an embedded service option for SolverForge users who don't want
5//! to manage the solver service separately.
6
7mod config;
8mod error;
9mod jar;
10mod service;
11pub mod util;
12
13pub use config::ServiceConfig;
14pub use error::{ServiceError, ServiceResult};
15pub use jar::JarManager;
16pub use service::EmbeddedService;
17
18pub use solverforge_core::{HttpSolverService, SolverService};