mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-27 08:16:14 +02:00
14 lines
180 B
C++
14 lines
180 B
C++
|
#pragma once
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
struct TreeInfo
|
||
|
{
|
||
|
Hash narHash;
|
||
|
std::optional<Hash> rev;
|
||
|
std::optional<uint64_t> revCount;
|
||
|
std::optional<time_t> lastModified;
|
||
|
};
|
||
|
|
||
|
}
|