blob: f3a490209114eea2349561f00cd17344a925653d [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>
6namespace crow
7{
8namespace webroutes
9{
10
Ed Tanouscf9e4172022-12-21 09:30:16 -080011// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
James Feist3909dc82020-04-03 10:58:55 -070012static boost::container::flat_set<std::string> routes;
13
14} // namespace webroutes
15
16} // namespace crow