pub fn spawn<F>(future: F)where F: Future<Output = ()> + Send + 'static,
Cross-platform task spawning
Spawns a new async task that runs in the background.
use pmcp::shared::runtime::spawn; spawn(async { println!("Running in background"); });