Remove test in main.cpp

This commit is contained in:
realaltffour 2020-04-01 13:30:06 +03:00
parent 9bf368ee4e
commit 2d85e570ab
No known key found for this signature in database
GPG Key ID: 05B35E2E8F56C5A6
1 changed files with 1 additions and 13 deletions

View File

@ -33,19 +33,7 @@ int main(int argc, const char* argv[]) {
.positional(general_positional)
.run(), vm);
notify(vm);
std::cout << "Hello world";
DB db, db2;
Project p1,p2;
p1.name = "hello";
p2.name = "world";
db.projects["hello"] = p1;
db.projects["world"] = p2;
writeDB(db, "hello.db");
loadDB(db2, "hello.db");
std::cout << "\n Loading projects: ";
std::cout << db2.projects["hello"].name;
if (vm.count("help")) {
std::cout << general << "\n";
exit(0);