xref: /openbmc/bmcweb/src/dbus_singleton.cpp (revision 40e9b92ec19acffb46f83a6e55b18974da5d708e)
1 // SPDX-License-Identifier: Apache-2.0
2 // SPDX-FileCopyrightText: Copyright OpenBMC Authors
3 #include "dbus_singleton.hpp"
4 
5 #include <sdbusplus/asio/connection.hpp>
6 
7 namespace crow
8 {
9 namespace connections
10 {
11 // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
12 sdbusplus::asio::connection* systemBus = nullptr;
13 
14 } // namespace connections
15 } // namespace crow
16