blob: 640e960b1f757eb4a7b6c884438e7a1eafc6f6b0 (
plain) (
tree)
|
|
#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);
}
|