wallet_lib/
entry.rs

1
2#[derive(Debug)]
3struct Entry {}
4
5impl Entry {
6    fn new() -> Self {
7        println!("-> Entry::new()");
8
9        Entry {}
10    }
11}