docs: further setting up structure

This commit is contained in:
2023-12-12 04:02:12 +00:00
parent 3838d8e94a
commit 8426db0da1
7 changed files with 90 additions and 24 deletions

View File

@ -1,2 +1,13 @@
#include "schedule.h"
#include "engine.h"
#include "engine.h"
void BookStoreBackEndClass::Run()
{
std::string request_data;
while(true)
{
input_ptr->getline(request_data, '\n');
// std::string response_data = Engine::Process(request_data);
// output_ptr << response_data << '\n';
}
}