Outsourced command execution to service

This commit is contained in:
2025-06-10 16:46:58 +02:00
parent 343b6aadf7
commit 4b8c8c355f
3 changed files with 42 additions and 26 deletions

11
include/ShellService.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef SHELL_SERVICE_H
#define SHELL_SERVICE_H
#include <string>
class ShellService {
public:
static std::string exec(const std::string& command);
};
#endif