xref: /openbmc/bmcweb/src/dbus_singleton.cpp (revision d2ec1bd7a0267cfd259615b979a4a2119f09a7d6)
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