gRPC request actions and "copy as gRPCurl" (#232)

This commit is contained in:
Gregory Schier
2025-07-05 15:40:41 -07:00
committed by GitHub
parent ad4d6d9720
commit 19ffcd18a6
59 changed files with 1490 additions and 320 deletions

View File

@@ -47,9 +47,14 @@ pub async fn fill_pool_from_files(
];
for p in paths {
if p.as_path().exists() {
if !p.exists() {
continue;
}
// Dirs are added as includes
if p.is_dir() {
args.push("-I".to_string());
args.push(p.to_string_lossy().to_string());
} else {
continue;
}
@@ -62,6 +67,8 @@ pub async fn fill_pool_from_files(
} else {
debug!("ignoring {:?} since it does not exist.", parent)
}
args.push(p.to_string_lossy().to_string());
}
let out = app_handle