Skip to main content

tiger_sample/
lib.rs

1pub mod tiger_sample {
2    pub mod deep {
3        pub mod nested {
4            pub mod handler;
5            pub use handler::run;
6        }
7    }
8}