#ifndef UTILS_HPP #define UTILS_HPP #include #include #include #include namespace utils { std::expected isLocalPortOpen(uint16_t portno); std::string to_id_format(const std::string& s); std::string loadFile(const std::string& path); std::filesystem::path getDataDir(); } #endif