Files
Renderive/web_server/app/Web_Performance_Log.h
T
2026-08-16 17:53:46 +08:00

13 lines
324 B
C++

#pragma once
#include <filesystem>
#include <string_view>
namespace renderive::web {
void initialize_web_performance_log(const std::filesystem::path& log_directory);
void write_web_performance_log(std::string_view json_line);
[[nodiscard]] std::filesystem::path web_performance_log_path();
} // namespace renderive::web