#include "line_id.hpp" #include #include namespace bot { namespace loc { std::optional string_to_line_id(const std::string &str) { if (str == "ping.response") { return LineId::PingResponse; } else { return std::nullopt; } } } }