sqlx_seeder/
lib.rs

1mod hello_rust;
2pub use hello_rust::print_hello;
3
4pub fn lib_hello(){
5  println!("lib_hello");
6}