forked from lix-project/lix
18 lines
200 B
C++
18 lines
200 B
C++
#include "types.hh"
|
|
#include "flakeref.hh"
|
|
|
|
#include <variant>
|
|
|
|
namespace nix {
|
|
|
|
struct FlakeRegistry
|
|
{
|
|
struct Entry
|
|
{
|
|
FlakeRef ref;
|
|
};
|
|
std::map<FlakeId, Entry> entries;
|
|
};
|
|
|
|
}
|