1 #include "config.h"
2 
3 #include <map>
4 #include <sdbusplus/server.hpp>
5 #include <string>
6 
7 namespace utils
8 {
9 
10 /**
11  * @brief Get the bus service
12  *
13  * @return the bus service as a string
14  **/
15 std::string getService(sdbusplus::bus::bus& bus, const std::string& path,
16                        const std::string& interface);
17 
18 } // namespace utils
19