| 180 | } |
| 181 | |
| 182 | path config::plugins_dir() |
| 183 | { |
| 184 | std::string cpath = get_config_value(__func__, ""); |
| 185 | if (!cpath.empty()) |
| 186 | return (const char8_t *)cpath.c_str(); |
| 187 | |
| 188 | return loader_dir() / "plugins"; |
| 189 | } |
| 190 | |
| 191 | std::string config::disabled_plugins() |
| 192 | { |
nothing calls this directly
no test coverage detected