aboutsummaryrefslogtreecommitdiffstats
path: root/src/module/GpgFrontendModuleInit.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2023-10-25 14:28:25 +0000
committersaturneric <[email protected]>2023-10-25 14:28:25 +0000
commitb7ceed0b87752077fe19fefe9b0df8ec27ce0531 (patch)
tree51cb5f2a9210dabaa585b65d085f336cc5f0f844 /src/module/GpgFrontendModuleInit.cpp
parentfix: solve some code tidy issues (diff)
downloadGpgFrontend-b7ceed0b87752077fe19fefe9b0df8ec27ce0531.tar.gz
GpgFrontend-b7ceed0b87752077fe19fefe9b0df8ec27ce0531.zip
feat: moving gnupg info gathering logic to a new module
Diffstat (limited to '')
-rw-r--r--src/module/GpgFrontendModuleInit.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/module/GpgFrontendModuleInit.cpp b/src/module/GpgFrontendModuleInit.cpp
index cd874817..46a57f47 100644
--- a/src/module/GpgFrontendModuleInit.cpp
+++ b/src/module/GpgFrontendModuleInit.cpp
@@ -32,6 +32,7 @@
#include <module/sdk/Log.h>
// integrated modules
+#include "integrated/gnupg_info_gathering_module/GnuPGInfoGatheringModule.h"
#include "integrated/version_checking_module/VersionCheckingModule.h"
namespace GpgFrontend::Module {
@@ -45,6 +46,10 @@ void LoadGpgFrontendModules() {
RegisterAndActivateModule<
Integrated::VersionCheckingModule::VersionCheckingModule>();
+ // VersionCheckingModule
+ RegisterAndActivateModule<
+ Integrated::GnuPGInfoGatheringModule::GnuPGInfoGatheringModule>();
+
MODULE_LOG_INFO("load integrated module done.");
}