15 lines
233 B
C++
15 lines
233 B
C++
#include <psemek/journal/event.hpp>
|
|
|
|
#include <chrono>
|
|
#include <format>
|
|
|
|
namespace psemek::journal
|
|
{
|
|
|
|
std::string current_time()
|
|
{
|
|
const auto now = std::chrono::system_clock::now();
|
|
return std::format("{:%FT%TZ}", now);
|
|
}
|
|
|
|
}
|