MCPcopy Create free account
hub / github.com/BitVM/BitVM / FtpCredentials

Class FtpCredentials

bridge/src/client/data_store/ftp/lib.rs:12–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10};
11
12pub struct FtpCredentials {
13 pub is_secure: bool,
14 pub host: String,
15 pub port: String,
16 pub username: String,
17 pub password: String,
18 pub base_path: String,
19}
20
21pub async fn test_connection(credentials: &FtpCredentials) -> Result<(), String> {
22 if credentials.is_secure {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected