Files
KubeControl/include/kubecontrol/Utils.hpp

22 lines
226 B
C++

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