Skip to main content

blazegraph_io/
lib.rs

1// All core functionality is in blazegraph-io-core
2// This CLI acts as a thin wrapper around the core library
3
4// CLI-specific modules
5pub mod jre_manager;
6
7// Re-export core types for convenience
8pub use blazegraph_io_core::*;
9
10// Re-export CLI utilities
11pub use jre_manager::JreManager;