Macro routes

Source
macro_rules! routes {
    ($( ($route:expr, $table:expr) ),*) => { ... };
}
Expand description

Example

let routes = routes!(
   ("/people", PeopleTableSchema),
   ("/jobs", JobsTableSchema)
);