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