Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

15 lines
269 B
C++

#pragma once
#include <map>
#include <string>
namespace prometheus {
/// \brief Multiple labels and their value.
using Labels = std::map<std::string, std::string>;
/// \brief Single label and its value.
using Label = Labels::value_type;
} // namespace prometheus