1 #include "util.hpp" 2 3 namespace phosphor::power::psu 4 { 5 6 const UtilBase& getUtils() 7 { 8 static Util util; 9 return util; 10 } 11 12 } // namespace phosphor::power::psu 13