AppFlowy/rust-lib/flowy-dispatch/tests/api/helper.rs

19 lines
395 B
Rust
Raw Normal View History

2021-07-08 13:23:44 +00:00
use flowy_dispatch::prelude::*;
2021-07-05 13:23:13 +00:00
use std::sync::Once;
2021-06-27 07:11:41 +00:00
#[allow(dead_code)]
pub fn setup_env() {
static INIT: Once = Once::new();
INIT.call_once(|| {
2021-07-08 13:23:44 +00:00
std::env::set_var("RUST_LOG", "flowy_dispatch=debug,debug");
2021-06-27 07:11:41 +00:00
env_logger::init();
});
}
2021-07-03 06:14:10 +00:00
pub fn init_dispatch<F>(module_factory: F)
where
F: FnOnce() -> Vec<Module>,
{
2021-07-03 06:14:10 +00:00
EventDispatch::construct(module_factory);
}