// A helper file that may be used to inject the git commit hash and the build time into a binary.
#pragma once

#include <cstdint>

namespace @PROJECT_NAME@
{
namespace build_version
{
namespace git
{
constexpr char const * const kHash = "@GIT_HASH@";
constexpr char const * const kTag = "@GIT_TAG@";
constexpr uint64_t kTimestamp = @GIT_TIMESTAMP@;
constexpr char const * const kProjectName = "@PROJECT_NAME@";
}  // namespace git
}  // namespace build_version
}  // namespace @PROJECT_NAME@