.
Some checks failed
Dropshell Test / Build_and_Test (push) Failing after 20s

This commit is contained in:
Your Name
2025-05-10 13:47:17 +12:00
parent 068ef34709
commit 8827ea5a42
28 changed files with 26043 additions and 1567 deletions

21
runner/runner.h Normal file
View File

@ -0,0 +1,21 @@
#pragma once
#include <string>
#include <vector>
#include <map>
struct sSSHInfo {
std::string host;
std::string user;
std::string port;
};
int execute_cmd(
const std::string& command,
const std::vector<std::string>& args,
const std::string& working_dir,
const std::map<std::string, std::string>& env,
bool silent,
bool interactive,
sSSHInfo* sshinfo = nullptr,
std::string* output = nullptr
);