diff options
author | saturneric <[email protected]> | 2023-10-25 14:28:25 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-10-25 14:28:25 +0000 |
commit | b7ceed0b87752077fe19fefe9b0df8ec27ce0531 (patch) | |
tree | 51cb5f2a9210dabaa585b65d085f336cc5f0f844 /src/module/GpgFrontendModuleInit.cpp | |
parent | fix: solve some code tidy issues (diff) | |
download | GpgFrontend-b7ceed0b87752077fe19fefe9b0df8ec27ce0531.tar.gz GpgFrontend-b7ceed0b87752077fe19fefe9b0df8ec27ce0531.zip |
feat: moving gnupg info gathering logic to a new module
Diffstat (limited to 'src/module/GpgFrontendModuleInit.cpp')
-rw-r--r-- | src/module/GpgFrontendModuleInit.cpp | 5 |
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."); } |