Able to fetch a list of module names

This commit is contained in:
Greg Hellings
2025-02-24 20:55:06 -06:00
parent 1a6e51579b
commit 3e2cd701d0
8 changed files with 184 additions and 8 deletions
+6
View File
@@ -0,0 +1,6 @@
use sword_rs::mgr::{new_mgr, Mgr};
fn main() {
let mgr = new_mgr();
println!("{:?}", mgr.get_modules());
}