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