Files
App/src/util/id_util.hpp
2026-06-13 10:49:41 +07:00

15 lines
160 B
C++

#pragma once
#include <string>
namespace lm {
class IdUtil
{
public:
static std::string newId();
static std::string nowIso8601();
};
} // namespace lm