My Rust project structure inside src
folder:
|main.rs
|routes folder:
|-mod.rs
|-route_func.rs
|blockchain folder:
|simple_func.rs
I got this error message: function exists but is inaccessible
How can I use the simple_func.rs functions inside the route_func.rs ?
It seems I need to construct a module tree...