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 namespace crow 7 { 8 namespace webroutes 9 { 10 11 // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) 12 static boost::container::flat_set<std::string> routes; 13 14 } // namespace webroutes 15 16 } // namespace crow 17