| 196 | }; |
| 197 | |
| 198 | MOD_EXPORT void _INIT_() { |
| 199 | json def = json({}); |
| 200 | def["path"] = ""; |
| 201 | config.setPath(options::opts.root + "/file_source_config.json"); |
| 202 | config.load(def); |
| 203 | config.enableAutoSave(); |
| 204 | } |
| 205 | |
| 206 | MOD_EXPORT void* _CREATE_INSTANCE_(std::string name) { |
| 207 | return new FileSourceModule(name); |
nothing calls this directly
no test coverage detected