1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
use smol_str::SmolStr; #[derive(Debug)] pub struct JsExtModule { pub id: SmolStr, } impl JsExtModule { pub fn new(id: SmolStr) -> Self { Self { id, // resolved_ids: Default::default(), // source: "".to_string(), } } }