userver
C++ Async Framework
Loading...
Searching...
No Matches
samples/hello_service/src/say_hello.cpp
#include "say_hello.hpp"
#include <fmt/format.h>
namespace
samples::hello {
std::string SayHelloTo(std::string_view name) {
if
(name.empty()) {
name =
"unknown user"
;
}
return
fmt::format(
"Hello, {}!\n"
, name);
}
}
// namespace samples::hello
Generated on Tue Nov 19 2024 11:25:18 for userver by
Doxygen
1.10.0