Files
vision_hero/tools/logger.hpp
2026-03-21 15:03:10 +08:00

12 lines
193 B
C++

#ifndef TOOLS__LOGGER_HPP
#define TOOLS__LOGGER_HPP
#include <spdlog/spdlog.h>
namespace tools
{
std::shared_ptr<spdlog::logger> logger();
} // namespace tools
#endif // TOOLS__LOGGER_HPP