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







                                   
                            









                                  
#include "globals.hh"
#include "db.hh"


string dbRefs = "refs";
string dbNFs = "nfs";
string dbNetSources = "netsources";

string nixStore = "/UNINIT";
string nixLogDir = "/UNINIT";
string nixDB = "/UNINIT";


void initDB()
{
    createDB(nixDB, dbRefs);
    createDB(nixDB, dbNFs);
    createDB(nixDB, dbNetSources);
}