cli: main: Wire up CommandList

This commit is contained in:
Albert S. 2022-06-02 14:35:48 +02:00
джерело 45505e4447
коміт 5d702c9a95
1 змінених файлів з 5 додано та 1 видалено

@ -10,7 +10,6 @@
#include <QSettings>
#include <functional>
#include <QTimer>
#include <exception>
#include "encodingdetector.h"
#include "pdfprocessor.h"
@ -21,6 +20,7 @@
#include "commanddelete.h"
#include "commandupdate.h"
#include "commandsearch.h"
#include "commandlist.h"
#include "databasefactory.h"
#include "logger.h"
#include "sandboxedprocessor.h"
@ -50,6 +50,10 @@ Command *commandFromName(QString name, SqliteDbService &dbService)
{
return new CommandSearch(dbService);
}
if(name == "list")
{
return new CommandList(dbService);
}
return nullptr;
}