guix/src/globals.cc
Eelco Dolstra a5a90f501e * Get rid of the `netsources' database.
* Rename the `refs' database to `hash2paths'.
2003-07-08 08:35:06 +00:00

18 lines
289 B
C++

#include "globals.hh"
#include "db.hh"
string dbHash2Paths = "hash2paths";
string dbSuccessors = "successors";
string nixStore = "/UNINIT";
string nixLogDir = "/UNINIT";
string nixDB = "/UNINIT";
void initDB()
{
createDB(nixDB, dbHash2Paths);
createDB(nixDB, dbSuccessors);
}