Documentation
1
2
3
4
5
6
use beambook::Book;

fn main() {
    let bk = Book::load_from_file("traj.mpk").unwrap();
    println!("{:#?}",bk);
}