Made web app a bit more useful

This commit is contained in:
greg
2017-10-01 23:25:36 -07:00
parent 89482e5b5a
commit 29d307ff53
3 changed files with 24 additions and 11 deletions

View File

@@ -13,7 +13,7 @@ fn js_bundle() -> Result<NamedFile, ()> {
NamedFile::open("static/bundle.js").map_err(|_| ())
}
#[derive(Serialize, Deserialize)]
#[derive(Debug, Serialize, Deserialize)]
struct Input {
source: String,
}
@@ -25,6 +25,7 @@ struct Output {
#[post("/input", format = "application/json", data = "<input>")]
fn interpreter_input(input: Json<Input>) -> Json<Output> {
println!("INPUT {:?}", input);
let output = Output { text: "test interpreter output".to_string() };
Json(output)
}