removed unwanted/needed stuff

This commit is contained in:
shockrah 2020-01-29 20:15:36 -08:00
parent 10e4986ef2
commit 42090cd6b1

View File

@ -12,9 +12,6 @@ use rocket_contrib::templates::Template;
mod website;
use website::*;
mod chat;
use chat::*;
fn rocket() -> rocket::Rocket {
rocket::ignite()
@ -23,9 +20,6 @@ fn rocket() -> rocket::Rocket {
homepage, about_page, server_info,
static_css, static_js, static_media
])
.mount("/api/chat/", routes![
list
])
.attach(Template::fairing())
}