ADD: added Util class with the function to lowercase the vals for yaml and added support of setting args and command

This commit is contained in:
Henry Winkel
2023-08-09 10:23:50 +02:00
parent 39f0f2b4eb
commit bda06c285b
6 changed files with 96 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include <string>
#include <algorithm>
namespace kubecontrol
{
class Utils
{
public:
static std::string to_lower(std::string);
};
}