dropshell/runner/runner.h
Your Name 8827ea5a42
Some checks failed
Dropshell Test / Build_and_Test (push) Failing after 20s
.
2025-05-10 13:47:17 +12:00

21 lines
440 B
C++

#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
);