use std::path::Path;
pub type CollectionDescription = super::CollectionDescription;
pub type CollectionSchematic = super::CollectionSchematic;
pub type CustomCollection = super::CustomCollection;
pub fn from_path(path: impl AsRef<Path>) -> Result<CustomCollection, String> {
super::CustomCollection::from_path(path)
}
pub fn from_package(
package_name: &str,
module_paths: impl IntoIterator<Item = impl AsRef<Path>>,
) -> Result<CustomCollection, String> {
super::CustomCollection::from_package(package_name, module_paths)
}