xref: /openbmc/bmcweb/include/webroutes.hpp (revision 4025211cd2c60a0caa5537171cf4b902f7566835)
1 // SPDX-License-Identifier: Apache-2.0
2 // SPDX-FileCopyrightText: Copyright OpenBMC Authors
3 #pragma once
4 
5 #include <boost/container/flat_set.hpp>
6 
7 #include <string>
8 namespace crow
9 {
10 namespace webroutes
11 {
12 
13 // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
14 static boost::container::flat_set<std::string> routes;
15 
16 } // namespace webroutes
17 
18 } // namespace crow
19