1#ifndef IPFS_CHROMIUM_GATEWAY_REQUEST_TYPE_H
2#define IPFS_CHROMIUM_GATEWAY_REQUEST_TYPE_H
8enum class GatewayRequestType :
char {
17std::string_view name(GatewayRequestType t);
18std::optional<GatewayRequestType> from_name(std::string_view);
19constexpr std::size_t RequestTypeCount =
20 static_cast<std::size_t
>(gw::GatewayRequestType::Zombie);