about summary refs log blame commit diff
path: root/src/globals.cc
blob: 40a5a981b87171c06823c1cdcb05dd85d7919975 (plain) (tree)
1
2
3
4
5
6
7
8



                     
                                   
                                   
 
                            





                             
                                  
                                  
 
#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);
}