We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 692b219 commit fbbed77Copy full SHA for fbbed77
1 file changed
engine-demo/src/main.rs
@@ -29,7 +29,7 @@ async fn main() {
29
30
let executor = unm_api_utils::executor::build_full_executor();
31
let engines_to_use = std::env::var("ENGINES")
32
- .unwrap_or_else(|_| "bilibili ytdl kugou migu".to_string())
+ .unwrap_or_else(|_| executor.list().join(" "))
33
.split_whitespace()
34
.map(|v| Cow::Owned(v.to_string()))
35
.collect::<Vec<Cow<'static, str>>>();
0 commit comments