Advertisement
Guest User

Untitled

a guest
May 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. // route/mod.rs
  2.  
  3. mod course;
  4. mod exam;
  5.  
  6. pub use self::course;
  7. pub use self::exam;
  8.  
  9. // main.rs
  10.  
  11. mod route;
  12.  
  13. // server
  14.  
  15. use route::*;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement