1 #pragma once 2 3 #include <boost/container/flat_set.hpp> 4 namespace crow 5 { 6 namespace webroutes 7 { 8 9 // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) 10 static boost::container::flat_set<std::string> routes; 11 12 } // namespace webroutes 13 14 } // namespace crow 15