InvoDB/invodb/main.cpp

16 lines
202 B
C++
Raw Normal View History

2021-10-05 14:41:15 +08:00
//
// Created by YuhangQ on 2021/9/24.
//
#include "main.h"
int main() {
2021-10-11 22:05:45 +08:00
VirtualStorage::loadDatabase("test.invodb");
VirtualStorage& storage = VirtualStorage::Instance();
2021-10-05 14:41:15 +08:00
2021-10-05 16:02:01 +08:00
2021-10-05 14:41:15 +08:00
return 0;
}