| 22 | class Loader final { |
| 23 | public: |
| 24 | Loader(const ModuleBag& registry): registry_(registry) {} |
| 25 | |
| 26 | std::shared_ptr<Module> loadModule(std::span<uint8_t> moduleData) const; |
| 27 | std::shared_ptr<Module> loadModuleByName(const std::string& name, const std::string& checksum) const; |
nothing calls this directly
no outgoing calls
no test coverage detected