Vendor pkgs: add subflake directories

This commit is contained in:
2026-04-12 19:55:23 +02:00
parent ce5fafcf29
commit cb93e97ef5
33 changed files with 1885 additions and 3 deletions

View File

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