#pragma once #include #include #include #include namespace phosphor::health::utils { using paths_t = std::vector; /** @brief Start a systemd unit */ void startUnit(sdbusplus::bus_t& bus, const std::string& sysdUnit); /** @brief Find D-Bus paths for given interface */ auto findPaths(sdbusplus::async::context& ctx, const std::string& iface, const std::string& subpath) -> sdbusplus::async::task; } // namespace phosphor::health::utils