rocket-pinboard/src/main.rs

33 lines
763 B
Rust
Raw Normal View History

2017-12-06 15:29:10 +01:00
#![feature(plugin)]
#![plugin(rocket_codegen)]
extern crate comrak;
extern crate glob;
extern crate inflector;
2017-12-06 15:29:10 +01:00
extern crate rocket;
2017-12-06 16:47:55 +01:00
extern crate rocket_contrib;
#[macro_use] extern crate serde_derive;
extern crate serde_json;
2017-12-06 15:29:10 +01:00
mod list;
mod handlers;
use rocket::Rocket;
use std::sync::RwLock;
fn rocket() -> Rocket {
let lists = list::List::load_all();
2017-12-06 15:29:10 +01:00
rocket::ignite()
.manage(RwLock::new(lists))
.mount("/", routes![handlers::home::index,
handlers::static_files::all])
.mount("/lists", routes![handlers::list::index,
handlers::list::show_html, handlers::list::show_json,
handlers::list::update])
.attach(rocket_contrib::Template::fairing())
}
fn main() {
rocket().launch();
2017-12-06 15:29:10 +01:00
}