James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include <boost/container/flat_set.hpp> | ||||
4 | namespace crow | ||||
5 | { | ||||
6 | namespace webroutes | ||||
7 | { | ||||
8 | |||||
Ed Tanous | cf9e417 | 2022-12-21 09:30:16 -0800 | [diff] [blame] | 9 | // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) |
James Feist | 3909dc8 | 2020-04-03 10:58:55 -0700 | [diff] [blame] | 10 | static boost::container::flat_set<std::string> routes; |
11 | |||||
12 | } // namespace webroutes | ||||
13 | |||||
14 | } // namespace crow |