Ed Tanous | 40e9b92 | 2024-09-10 13:50:16 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: Apache-2.0 |
| 2 | // SPDX-FileCopyrightText: Copyright OpenBMC Authors |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 3 | #pragma once |
| 4 | |
| 5 | #include <boost/container/flat_set.hpp> |
Ed Tanous | d785720 | 2025-01-28 15:32:26 -0800 | [diff] [blame] | 6 | |
| 7 | #include <string> |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 8 | namespace crow |
| 9 | { |
| 10 | namespace webroutes |
| 11 | { |
| 12 | |
Ed Tanous | cf9e417 | 2022-12-21 09:30:16 -0800 | [diff] [blame] | 13 | // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 14 | static boost::container::flat_set<std::string> routes; |
| 15 | |
| 16 | } // namespace webroutes |
| 17 | |
| 18 | } // namespace crow |