~/selfhut

selfhut/src/main.rs -rw-r--r-- 235 B
0545f2a7 — Arthur Melton start of stuff working 2 years ago
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_use] extern crate rocket;
mod git;
mod index;
mod config;

use rocket_dyn_templates::Template;

#[launch]
fn rocket() -> _ {
    rocket::build()
        .mount("/", routes![index::index])
        .attach(Template::fairing())
}