blob: 8c06a84066ba9369f9f0cac1c731fe30030a3a62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include <crepe/api/Config.h>
#include <crepe/facade/DB.h>
#include <crepe/util/log.h>
using namespace crepe;
using namespace std;
// run before main
static auto _ = []() {
auto & cfg = Config::get_instance();
cfg.log.level = LogLevel::TRACE;
return 0;
}();
int main() {
dbg_trace();
DB db("file.db");
const char * test_key = "test-key";
string test_data = "Hello world!";
dbg_logf("DB has key = %d", db.has(test_key));
db.set(test_key, test_data);
dbg_logf("key = \"%s\"", db.get(test_key).c_str());
return 0;
}
|