summaryrefslogtreecommitdiff
path: root/include/webroutes.hpp
blob: 900e75aeecd09aaa16ea363d3ae418a258787c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright OpenBMC Authors
#pragma once

#include <boost/container/flat_set.hpp>

#include <string>
namespace crow
{
namespace webroutes
{

// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
static boost::container::flat_set<std::string> routes;

} // namespace webroutes

} // namespace crow