5#include <userver/utils/span.hpp> 
   12struct StaticServiceMetadata 
final {
 
   13  std::string_view service_full_name;
 
   14  utils::span<
const std::string_view> method_full_names;
 
   17template <
typename GrpcppService>
 
   18constexpr StaticServiceMetadata MakeStaticServiceMetadata(
 
   19    utils::span<
const std::string_view> method_full_names) 
noexcept {
 
   20  return {GrpcppService::service_full_name(), method_full_names};