nix-super/src/libstore/fetchers/tree-info.hh

14 lines
180 B
C++
Raw Normal View History

2020-02-01 17:41:54 +02:00
#pragma once
namespace nix {
struct TreeInfo
{
Hash narHash;
std::optional<Hash> rev;
std::optional<uint64_t> revCount;
std::optional<time_t> lastModified;
};
}