HttpResponse HelloWorld()

in sample-functions-framework-cpp/hello.cc [21:25]


HttpResponse HelloWorld(HttpRequest) {  // NOLINT
  return HttpResponse{}
      .set_header("Content-Type", "text/plain")
      .set_payload("hello, world\n");
}