From b7ceed0b87752077fe19fefe9b0df8ec27ce0531 Mon Sep 17 00:00:00 2001 From: saturneric Date: Wed, 25 Oct 2023 22:28:25 +0800 Subject: feat: moving gnupg info gathering logic to a new module --- src/module/GpgFrontendModuleInit.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/module/GpgFrontendModuleInit.cpp') 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 // 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."); } -- cgit v1.2.3