pub trait ImportResolver {
// Required method
fn resolve_import(
&self,
source_file: &Utf8Path,
module_path: &[String],
raw: &str,
) -> Option<ModuleTarget>;
}pub trait ImportResolver {
// Required method
fn resolve_import(
&self,
source_file: &Utf8Path,
module_path: &[String],
raw: &str,
) -> Option<ModuleTarget>;
}