| 136 | * The symbol RegisterModule is called with the singleton ModuleRegistry as argument. |
| 137 | */ |
| 138 | extern "C" void DARKRADIANT_DLLEXPORT RegisterModule(IModuleRegistry& registry) |
| 139 | { |
| 140 | module::performDefaultInitialisation(registry); |
| 141 | |
| 142 | registry.registerModule(std::make_shared<vcs::GitModule>()); |
| 143 | } |
nothing calls this directly
no test coverage detected