1 2 3 4 5 6 7 8 9
use crate::bridge::PangoroChapelServiceManager;
pub async fn handle_start() -> color_eyre::Result<()> {
tracing::info!("Start bridge pangoro-chapel(bsc test net)");
let _manager = PangoroChapelServiceManager::new().await?;
loop {
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
}
}