We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3344407 commit 5acde00Copy full SHA for 5acde00
escl-scan/src/lib.rs
@@ -84,7 +84,7 @@ pub fn get_scanner_capabilities(
84
Ok(scanner_capabilities)
85
}
86
87
-pub fn get_scan_response(
+fn get_scan_response(
88
scanner_base_path: &str,
89
request_body: String,
90
) -> Result<Response, ScannerError> {
@@ -110,7 +110,7 @@ pub fn get_scan_response(
110
return Ok(response);
111
112
113
-pub fn download_scan(download_url: &str, destination_file: &str) -> Result<(), ScannerError> {
+fn download_scan(download_url: &str, destination_file: &str) -> Result<(), ScannerError> {
114
log::info!("Downloading output file to {}...", destination_file);
115
let mut response = match reqwest::blocking::get(download_url) {
116
Ok(response) => response,
0 commit comments