mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-04-11 13:43:08 +00:00
13 lines
420 B
Rust
13 lines
420 B
Rust
|
|
mod app;
|
||
|
|
mod compose_env;
|
||
|
|
mod k8s_env;
|
||
|
|
mod local_env;
|
||
|
|
pub mod scenario;
|
||
|
|
|
||
|
|
pub use app::*;
|
||
|
|
pub use scenario::{PubSubBuilderExt, PubSubScenarioBuilder};
|
||
|
|
|
||
|
|
pub type PubSubK8sDeployer = testing_framework_runner_k8s::K8sDeployer<PubSubEnv>;
|
||
|
|
pub type PubSubLocalDeployer = testing_framework_runner_local::ProcessDeployer<PubSubEnv>;
|
||
|
|
pub type PubSubComposeDeployer = testing_framework_runner_compose::ComposeDeployer<PubSubEnv>;
|