summaryrefslogtreecommitdiff
path: root/bot/src/utils/chrono.hpp
blob: 7e85e7054fb4b0e59a0e3f36524b170931dac1ec (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <chrono>
#include <string>

namespace bot::utils::chrono {
  std::string format_timestamp(int seconds);
  std::chrono::system_clock::time_point string_to_time_point(
      const std::string &value,
      const std::string &format = "%Y-%m-%d %H:%M:%S");
}