#![feature(proc_macro_hygiene)] #![feature(decl_macro)] #[macro_use] extern crate rocket; #[macro_use] extern crate serde_json; #[macro_use] extern crate rocket_contrib; #[macro_use] extern crate diesel; #[macro_use] extern crate log; extern crate fern; #[macro_use] pub mod db; pub mod error; pub mod importer; pub mod models; mod schema; pub mod server; mod strava; pub mod template; pub struct Params { pub base_url: String, pub strava_client_id: String, pub strava_client_secret: String, }