Skip to content

Commit 4cbe4fe

Browse files
authored
Fix package resolver
1 parent 796fdff commit 4cbe4fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interpreter/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pub struct Application<'a> {
6161
// Resolve files
6262
module_resolver: Box<dyn FnMut(&str) -> Vec<u8>>,
6363
// Resolve path from mod name
64-
pkg_resolver: Box<dyn FnMut(&str) -> RespPackage>,
64+
pkg_resolver: Box<dyn FnMut(&str) -> Vec<RespPackage>>,
6565
// Log in case of full access request
6666
log_info: Box<dyn FnMut(&str) -> ()>,
6767
pub(crate) runtime: Runtime,

0 commit comments

Comments
 (0)