lotabout.skim/examples/async.rs
figsoda 2a7bd1db11
feat: allow run_with to be run within a tokio runtime (#979)
* feat: allow run_with to be run within a tokio runtime

* feat: add async example
2026-02-17 21:05:50 +00:00

8 lines
193 B
Rust

use skim::{Skim, prelude::SkimOptionsBuilder};
#[tokio::main]
async fn main() {
let options = SkimOptionsBuilder::default().build().unwrap();
Skim::run_with(options, None).unwrap();
}