1 2 3 4 5 6 7 8
use tokio::runtime::Runtime; use crate::stream_sse::net::bootstrap; pub fn run(address: String) { let rt = Runtime::new().unwrap(); rt.block_on(bootstrap(address)); }