Files
KubeControl/include/kubecontrol/Utils.hpp

15 lines
178 B
C++

#pragma once
#include <string>
#include <algorithm>
namespace kubecontrol
{
class Utils
{
public:
static std::string to_lower(std::string);
};
}