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

13 lines
159 B
C++

#pragma once
namespace prometheus {
namespace detail {
enum class HttpMethod {
Post,
Put,
Delete,
};
} // namespace detail
} // namespace prometheus