use sqry_core::plugin::PluginManager;
#[must_use]
pub fn create_plugin_manager() -> PluginManager {
sqry_plugin_registry::create_plugin_manager()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_create_plugin_manager_delegates() {
let pm = create_plugin_manager();
assert!(pm.plugin_for_extension("rs").is_some());
}
}