refactor: Introduce base class for RequestHandler (#125)

This will make it possible to write a mock implementation.
This commit is contained in:
Povilas Kanapickas
2025-03-10 18:29:45 +02:00
committed by GitHub
parent 13cd12b00a
commit a218064a4f
8 changed files with 90 additions and 15 deletions

View File

@ -26,7 +26,7 @@
namespace QodeAssist::LLMCore {
RequestHandler::RequestHandler(QObject *parent)
: QObject(parent)
: RequestHandlerBase(parent)
, m_manager(new QNetworkAccessManager(this))
{}