This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
DBHomework/addbooktype.cpp

16 lines
197 B
C++
Raw Normal View History

#include "Session.h"
#include "Util.h"
#include "json.hpp"
using namespace std;
using json = nlohmann::json;
int main()
{
Request req;
Session se(req);
Response res;
return 0;
}