blob: 900e75aeecd09aaa16ea363d3ae418a258787c67 [file] [log] [blame]
Ed Tanous40e9b922024-09-10 13:50:16 -07001// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright OpenBMC Authors
James Feist3909dc82020-04-03 10:58:55 -07003#pragma once
4
5#include <boost/container/flat_set.hpp>
Ed Tanousd7857202025-01-28 15:32:26 -08006
7#include <string>
James Feist3909dc82020-04-03 10:58:55 -07008namespace crow
9{
10namespace webroutes
11{
12
Ed Tanouscf9e4172022-12-21 09:30:16 -080013// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
James Feist3909dc82020-04-03 10:58:55 -070014static boost::container::flat_set<std::string> routes;
15
16} // namespace webroutes
17
18} // namespace crow