cppscripts/helpers.hpp

15 lines
228 B
C++
Raw Normal View History

#ifndef CPPSCRIPTS_HELPERS_HPP
#define CPPSCRIPTS_HELPERS_HPP
#include <string>
#include <string_view>
namespace helpers
{
std::string get_env(std::string_view name);
} // namespace helpers
#endif // CPPSCRIPTS_HELPERS_HPP