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)]
|
2021-08-27 15:53:53 +00:00
|
|
|
pub fn setup_env() {
|
|
|
|
static INIT: Once = Once::new();
|
2021-09-11 12:09:46 +00:00
|
|
|
std::env::);
|
|
|
|
INIT.call_once(|| env_logger::init());
|
2021-06-27 07:11:41 +00:00
|
|
|
}
|
|
|
|
|
2021-09-04 07:12:53 +00:00
|
|
|
pub fn init_dispatch<F>(module_factory: F) -> EventDispatch
|
2021-06-28 14:56:15 +00:00
|
|
|
where
|
2021-07-02 12:45:51 +00:00
|
|
|
F: FnOnce() -> Vec<Module>,
|
2021-06-28 14:56:15 +00:00
|
|
|
{
|
2021-09-04 07:12:53 +00:00
|
|
|
EventDispatch::construct(module_factory)
|
2021-06-28 14:56:15 +00:00
|
|
|
}
|