about summary refs log tree commit diff
path: root/src/globals.cc
blob: 640e960b1f757eb4a7b6c884438e7a1eafc6f6b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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);
}