about summary refs log tree commit diff
path: root/src/globals.cc
blob: 14fb431d88979047df10a9df0feae86a62338c4a (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 nixValues = "/UNINIT";
string nixLogDir = "/UNINIT";
string nixDB = "/UNINIT";


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