Hacker News new | ask | show | jobs
by cjbassi 2290 days ago
It's still fairly common to use in conjunction with

    #[macro_use]
for when you want to easily import all of the macros from a crate across your entire project. But yes, you could do

    use rocket::{get, routes};
instead.