diff --git a/src/webapp.rs b/src/webapp.rs
index a0f706d..5d0023d 100644
--- a/src/webapp.rs
+++ b/src/webapp.rs
@@ -3,7 +3,6 @@ use rocket::State;
use rocket::response::Content;
use rocket::http::ContentType;
use rocket_contrib::Json;
-use schala_lang;
use language::{ProgrammingLanguageInterface, EvalOptions};
use WEBFILES;
use ::PLIGenerator;
@@ -34,14 +33,12 @@ struct Output {
}
#[post("/input", format = "application/json", data = "")]
-fn interpreter_input(input: Json) -> Json